Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
93255 胡皓宇 输出不及格学生的成绩 Python3 Accepted 32 MS 3752 KB 154 2024-10-13 09:10:13

Tests(1/1):


Code:

s = 0 for i in range(3): a = list(map(int,input().split())) for s in range(4): if a[s] < 60: print(*a) s = s + 1