Run ID | 作者 | 问题 | 语言 | 测评结果 | 分数 | 时间 | 内存 | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|---|
330965 | 路明泽 | 【C1-7】停车收费问题 | C++ | 编译错误 | 0 | 0 MS | 0 KB | 165 | 2025-07-11 13:12:02 |
include <stdio.h> int main() { int time; scanf("%d", &time); int fee = (time < 3) ? 5 : 20; printf("%d\n", fee); return 0; }