結果
問題 | No.1850 Rewrite Product |
ユーザー | miya145592 |
提出日時 | 2023-05-05 23:45:09 |
言語 | PyPy3 (7.3.15) |
結果 |
AC
|
実行時間 | 238 ms / 2,000 ms |
コード長 | 213 bytes |
コンパイル時間 | 578 ms |
コンパイル使用メモリ | 82,272 KB |
実行使用メモリ | 97,328 KB |
最終ジャッジ日時 | 2024-11-23 12:57:41 |
合計ジャッジ時間 | 1,726 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 36 ms
51,840 KB |
testcase_01 | AC | 238 ms
97,328 KB |
ソースコード
T = int(input()) XY = [list(map(int, input().split())) for _ in range(T)] for x, y in XY: if x>=5: print("Yes") else: if x>=y: print("Yes") else: print("No")