| Run ID | 作者 | 问题 | 语言 | 测评结果 | 分数 | 时间 | 内存 | 代码长度 | 提交时间 |
|---|---|---|---|---|---|---|---|---|---|
| 328885 | 黄浙峰老师 | 【C1-11】童童上班 | C++ | 通过 | 100 | 2 MS | 252 KB | 287 | 2025-07-07 16:14:08 |
#include<iostream> using namespace std; int main() { double s; int t1,t2; cin>>s; t1=50+s/3.0; t2=s/1.2; if(t1>t2){ cout<<"Walk"; } else if(t1<t2){ cout<<"Bike"; } else{ cout<<"All"; } return 0; }