Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|
86841 | 殷老师 | 输出不及格学生的成绩 | Python3 | Accepted | 39 MS | 3768 KB | 202 | 2024-07-28 15:18:26 |
for i in range(3): flag = 0 list1 = list(map(int, input().split())) for i in list1: if i < 60: flag = 1 break if(flag == 1): print(*list1)