| Run ID | Author | Problem | Lang | Verdict | Time | Memory | Code Length | Submit Time |
|---|---|---|---|---|---|---|---|---|
| 69098 | sh25_ganzy | 骑车与走路 | C++ | Accepted | 0 MS | 248 KB | 250 | 2025-10-10 19:16:44 |
#include<bits/stdc++.h> using namespace std; int main(){ float m; cin>>m; if(m/1.2>m/3.0+50.0){ cout<<"Bike"; }else if(m/1.2<m/3.0+50.0){ cout<<"Walk"; }else{ cout<<"All"; } return 0; }