Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
85729 汤弘毅 输出满足条件的成绩 Python3 Accepted 33 MS 3764 KB 153 2024-07-20 09:22:36

Tests(1/1):


Code:

students = [] for i in range(50): students.append(list(map(int,input().split()))) for j in students: if j[1] >= 80: print(j[0],j[1])