Run ID | Author | Problem | Lang | Verdict | Time | Memory | Code Length | Submit Time |
---|---|---|---|---|---|---|---|---|
63758 | qimiaoer | 天问一号 | C++ | Accepted | 0 MS | 244 KB | 193 | 2025-04-03 18:39:10 |
#include<bits/stdc++.h> using namespace std; int main() { int v; cin>>v; if(v==0) cout<<4; else if(v<10) cout<<3; else if(v<100) cout<<2; else if(v<700) cout<<1; return 0; }