| Run ID | Author | Problem | Lang | Verdict | Time | Memory | Code Length | Submit Time |
|---|---|---|---|---|---|---|---|---|
| 38616 | 马若兮 | 天问一号 | C++ | Accepted | 0 MS | 244 KB | 252 | 2024-01-27 19:49:37 |
#include<iostream> using namespace std; int main(){ int v=0; cin>>v; if(v<700 && v>=100){ cout<<"1"; } else if(v<100 && 10<=v){ cout<<"2"; } else if(v<10 && v!=0){ cout<<"3"; } else{ cout<<"4"; } return 0; }