| Run ID | Author | Problem | Lang | Verdict | Score | Time | Memory | Code Length | Submit Time |
|---|---|---|---|---|---|---|---|---|---|
| 335654 | admin_rjp | 【C1-7】后天 | C++ | Accepted | 100 | 2 MS | 248 KB | 159 | 2025-07-23 16:23:59 |
#include<iostream> using namespace std; int main(){ int D; cin>>D; if(D<=5){ cout<<D+2; } else{ cout<<D+2-7; } return 0; }