| Run ID | 作者 | 问题 | 语言 | 测评结果 | 时间 | 内存 | 代码长度 | 提交时间 |
|---|---|---|---|---|---|---|---|---|
| 73113 | sh25_shenpy | 天问一号 | C++ | 通过 | 0 MS | 244 KB | 290 | 2025-11-05 20:43:47 |
#include <bits/stdc++.h> using namespace std; int main( ) { int m; cin>>m; if(m<700&m>=100) { cout<<"1"; } else if(m<100&m>=10) { cout<<"2"; } else if(m<10&m>0) { cout<<"3"; } else cout<<"4"; return 0; }