Run ID | 作者 | 问题 | 语言 | 测评结果 | 时间 | 内存 | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|
39156 | Songgy_King | 天问一号 | C++ | 通过 | 0 MS | 244 KB | 272 | 2024-01-30 19:48:42 |
#include<iostream> using namespace std; int main() { int s; cin>>s; if(s<10){ cout<<"3"; } else if(s<100){ cout<<"2"; } else if(s<700){ cout<<"1"; } else if(s==0){ cout<<"4"; } return 0; }