Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|
85542 | 丁俊杰 | 输出不及格学生的成绩 | Python3 | Accepted | 32 MS | 3776 KB | 219 | 2024-07-17 20:10:30 |
results=[] for _ in range(3): a,b,c,d=map(int,input().split()) results.append((a,b,c,d)) for result in results: if result[0]<60 or result[1]<60 or result[2]<60 or result[3]<60: print(*result)