Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
84393 丁俊杰 收集瓶盖赢大奖 Python3 Accepted 41 MS 3776 KB 207 2024-07-15 18:30:57

Tests(10/10):


Code:

n=int(input()) list=[] for x in range(n): a,b=map(int,input().split()) list.append((a,b)) for i in list: if i[0]>=10 or i[1]>=20: print("True") else: print("False")