Run ID | 作者 | 问题 | 语言 | 测评结果 | 时间 | 内存 | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|
69098 | sh25_ganzy | 骑车与走路 | C++ | 通过 | 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; }