Run ID | 作者 | 问题 | 语言 | 测评结果 | 分数 | 时间 | 内存 | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|---|
330961 | 路明泽 | 【C1-7】小童想休息 | C++ | 通过 | 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; }