| Run ID | Author | Problem | Lang | Verdict | Score | Time | Memory | Code Length | Submit Time |
|---|---|---|---|---|---|---|---|---|---|
| 323695 | 孙一铭 | 【C1-T】上什么课 | C++ | Accepted | 100 | 3 MS | 252 KB | 272 | 2025-05-21 15:59:16 |
#include<bits/stdc++.h> using namespace std; int main(){ int s; cin>>s; if(s==1){ cout<<"swim"; } else if(s==3){ cout<<"program"; } else if(s==5){ cout<<"read"; } else if(s==6){ cout<<"math"; } else{ cout<<"rest"; } return 0; }