| Run ID | 作者 | 问题 | 语言 | 测评结果 | 时间 | 内存 | 代码长度 | 提交时间 |
|---|---|---|---|---|---|---|---|---|
| 76970 | sh25_zhangzh | 骑车与走路 | C++ | 通过 | 0 MS | 248 KB | 217 | 2025-12-20 21:09:49 |
#include<iostream> using namespace std; int main() { int w,b,s; cin>>s; w=s/1.2; b=s/3+50; if(w>b) { printf("Bike"); } else if(w<b) { printf("Walk"); } else { printf("All"); } }