| Run ID | Author | Problem | Lang | Verdict | Time | Memory | Code Length | Submit Time |
|---|---|---|---|---|---|---|---|---|
| 85794 | sh25_wuyy | 天问一号 | C++ | Accepted | 0 MS | 256 KB | 268 | 2026-03-15 17:58:01 |
#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; }