| Run ID | Author | Problem | Lang | Verdict | Score | Time | Memory | Code Length | Submit Time |
|---|---|---|---|---|---|---|---|---|---|
| 330921 | 陈信宇 | 【C1-7】停车收费问题 | C++ | Accepted | 100 | 2 MS | 252 KB | 150 | 2025-07-11 11:42:10 |
#include<bits/stdc++.h> using namespace std; int main() { int n; cin>>n; if(n<3){ cout<<"5"; }else{ cout<<"20"; } return 0; }