| Run ID | Author | Problem | Lang | Verdict | Score | Time | Memory | Code Length | Submit Time |
|---|---|---|---|---|---|---|---|---|---|
| 333991 | 李俞家骅 | 【C1-11】童童上班 | C++ | Accepted | 100 | 4 MS | 240 KB | 257 | 2025-07-17 10:30:14 |
#include<bits/stdc++.h> using namespace std; int main(){ int n; double a,b; cin>>n; a=(27+23)+n/3.0; b=n/1.2; if(a<b) cout<<"Bike"; else if(a>b) cout<<"Walk"; else cout<<"All"; return 0; }