| Run ID | Author | Problem | Lang | Verdict | Score | Time | Memory | Code Length | Submit Time |
|---|---|---|---|---|---|---|---|---|---|
| 330961 | 路明泽 | 【C1-7】小童想休息 | C++ | Accepted | 100 | 7 MS | 192 KB | 174 | 2025-07-11 13:09:56 |
#include <stdio.h> int main() { int n; scanf("%d", &n); if (n >= 8) { printf("0\n"); } else { printf("1\n"); } return 0; }