Run ID | Author | Problem | Lang | Verdict | Score | Time | Memory | Code Length | Submit Time |
---|---|---|---|---|---|---|---|---|---|
352909 | 胡珂 | 【C1-11】童童上班 | C++ | Accepted | 100 | 2 MS | 240 KB | 218 | 2025-09-29 22:09:24 |
#include<iostream> using namespace std; int main(){ double N; cin>>N; if((27+23+(N/3))>(N/1.2)){ cout<<"Walk"; }else if((27+23+(N/3))<(N/1.2)){ cout<<"Bike"; }else{ cout<<"All"; } return 0; }