| Run ID | 作者 | 问题 | 语言 | 测评结果 | 时间 | 内存 | 代码长度 | 提交时间 |
|---|---|---|---|---|---|---|---|---|
| 77741 | sh25_shengmy | 骑车与走路 | C++ | 通过 | 0 MS | 240 KB | 262 | 2025-12-26 14:44:19 |
#include<bits/stdc++.h> using namespace std; int main() { int a; cin>>a; if(((a/3.0)+23+27)>(a/1.2)){ cout<<"Walk"; } else if(((a/3.0)+23+27)==(a/1.2)){ cout<<"All"; } else if(((a/3.0)+23+27)<(a/1.2)){ cout<<"Bike"; } return 0; }