Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
78279 胡海峰老师 输出不及格学生的成绩 Python3 Accepted 37 MS 3752 KB 233 2024-06-16 20:34:54

Tests(1/1):


Code:

b =[ [int(i) for i in input().split()], [ int(i) for i in input().split()], [ int(i) for i in input().split()] ] for row in b: for ele in row: if ele <60: print( *row ) break