結果
| 問題 |
No.1850 Rewrite Product
|
| コンテスト | |
| ユーザー |
|
| 提出日時 | 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 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 1 |
| other | AC * 1 |
ソースコード
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")