Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|
116763 | 6倪葭轩 | 输出不及格学生的成绩 | Python3 | Wrong Answer | 32 MS | 3772 KB | 198 | 2025-04-12 13:56:36 |
s = [] for _ in range(3): s= list(map(int, input().split())) s.append(s) for student in s: if any(score < 60 for score in student): print(' '.join(map(str, student)) + ' ')
------Input------
55 77 80 70 80 87 80 81 40 89 100 88
------Answer-----
55 77 80 70 40 89 100 88
------Your output-----