| Run ID | Author | Problem | Lang | Verdict | Score | Time | Memory | Code Length | Submit Time |
|---|---|---|---|---|---|---|---|---|---|
| 312060 | 蒋宇阳 | 【C1-7】停车收费问题 | C++ | Accepted | 100 | 1 MS | 248 KB | 139 | 2025-03-09 10:30:16 |
#include<iostream> using namespace std; int main(){ int n; cin>>n; if(n<3) cout<<"5"; else cout<<"20"; return 0; }