Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|
116764 | 6倪葭轩 | 输出不及格学生的成绩 | Python3 | Accepted | 37 MS | 3768 KB | 232 | 2025-04-12 13:56:59 |
students = [] for _ in range(3): scores = list(map(int, input().split())) students.append(scores) for student in students: if any(score < 60 for score in student): print(' '.join(map(str, student)) + ' ')