Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
116756 6倪葭轩 输出满足条件的成绩 Python3 Accepted 33 MS 3756 KB 174 2025-04-12 13:46:07

Tests(1/1):


Code:

students = [] for _ in range(50): line = input().split() student_id = int(line[0]) score = int(line[1]) if score >= 80: print(student_id, score)