| Run ID | Author | Problem | Lang | Verdict | Score | Time | Memory | Code Length | Submit Time |
|---|---|---|---|---|---|---|---|---|---|
| 312198 | 朱宸宇 | 【C1-T】上什么课 | C++ | Accepted | 100 | 1 MS | 252 KB | 257 | 2025-03-12 14:59:14 |
#include <iostream> using namespace std; int main() { int a; cin>>a; if (a==1) cout<<"swim"; else if (a==3) cout<<"program"; else if (a==5) cout<<"read"; else if (a==6) cout<<"math"; else cout<<"rest"; return 0; }