Run ID | 作者 | 问题 | 语言 | 测评结果 | 时间 | 内存 | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|
55285 | zhangweiran | 天问一号 | C++ | 通过 | 0 MS | 240 KB | 272 | 2024-11-04 21:03:06 |
#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; }