| Run ID | Author | Problem | Lang | Verdict | Score | Time | Memory | Code Length | Submit Time |
|---|---|---|---|---|---|---|---|---|---|
| 430703 | 许清菡 | 【C1-7】小童想休息 | C++ | Accepted | 100 | 5 MS | 248 KB | 154 | 2026-02-27 16:23:30 |
#include<iostream> #include<iomanip> using namespace std; int main(){ int n; cin>>n; if(n<8){ cout<<1; }else{ cout<<0; } return 0; }