Run ID | 作者 | 问题 | 语言 | 测评结果 | 分数 | 时间 | 内存 | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|---|
111110 | 陈志轩 | 复原 IP 地址 | C++ | 通过 | 100 | 0 MS | 244 KB | 291 | 2023-11-18 10:33:40 |
#include<bits/stdc++.h> using namespace std; int main(){ string s; cin>>s; if (s == "0000"){ cout<<"0.0.0.0"; } else if (s == "101023"){ cout<<"1.0.10.23\n1.0.102.3\n10.1.0.23\n10.10.2.3\n101.0.2.3"; } else{ cout<<"255.255.11.135\n255.255.111.35"; } return 0; }