結果
問題 | No.1850 Rewrite Product |
ユーザー | miya145592 |
提出日時 | 2023-05-05 23:45:09 |
言語 | PyPy3 (7.3.15) |
結果 |
AC
|
実行時間 | 244 ms / 2,000 ms |
コード長 | 213 bytes |
コンパイル時間 | 358 ms |
コンパイル使用メモリ | 81,920 KB |
実行使用メモリ | 97,152 KB |
最終ジャッジ日時 | 2024-05-02 19:01:57 |
合計ジャッジ時間 | 1,462 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 36 ms
51,968 KB |
testcase_01 | AC | 244 ms
97,152 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")