Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
85399 丁俊杰 输出满足条件的成绩 Python3 Accepted 38 MS 3748 KB 150 2024-07-17 13:42:33

Tests(1/1):


Code:

results=[] for _ in range(50): a,b=map(int,input().split()) results.append((a,b)) for i in results: if i[1]>=80: print(*i)