Run ID | Author | Problem | Lang | Verdict | Time | Memory | Code Length | Submit Time |
---|---|---|---|---|---|---|---|---|
15587 | 马德理666 | 天问一号 | C++ | Accepted | 0 MS | 244 KB | 207 | 2023-04-23 22:43:45 |
#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; }