| Run ID | 作者 | 问题 | 语言 | 测评结果 | 时间 | 内存 | 代码长度 | 提交时间 |
|---|---|---|---|---|---|---|---|---|
| 75684 | sh25_zhuwy | 天问一号 | C++ | 通过 | 0 MS | 244 KB | 299 | 2025-12-09 13:55:40 |
#include<bits/stdc++.h> using namespace std; int main() { int n; cin>>n; if(n<700) { cout<<1; } else if(n<100) { cout<<2; } else if(n<10) { cout<<3; } else if(n==0) { cout<<4; } return 0; }