| Run ID | 作者 | 问题 | 语言 | 测评结果 | 时间 | 内存 | 代码长度 | 提交时间 |
|---|---|---|---|---|---|---|---|---|
| 91617 | sh25_ganzy | 天问一号 | C++ | 编译错误 | 0 MS | 0 KB | 257 | 2026-06-13 20:18:59 |
#include<bits/stdc++.h> using namespace std; int main(){ int s; cin>>s; if(s==0){ cout<<4; }else if(s<10){ cout<<3; }else if(s<100){ cout<<2; }else(s<700){ cout<<1; } return 0; }