| Run ID | Author | Problem | Lang | Verdict | Time | Memory | Code Length | Submit Time |
|---|---|---|---|---|---|---|---|---|
| 80742 | sh25_zhangyy | 骑车与走路 | Python3 | Compile Error | 0 MS | 0 KB | 194 | 2026-01-04 15:29:39 |
#include<bits/stdc++.h> using namespace std; int main() { int a; cin>>a; if(a<100) cout<<"Walk"; else if(a==100) cout<<"All"; else cout<<"Bike"; }