結果
| 問題 | No.1850 Rewrite Product |
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2023-05-05 23:45:09 |
| 言語 | PyPy3 (7.3.17) |
| 結果 |
AC
|
| 実行時間 | 174 ms / 2,000 ms |
| コード長 | 213 bytes |
| 記録 | |
| コンパイル時間 | 427 ms |
| コンパイル使用メモリ | 85,120 KB |
| 実行使用メモリ | 101,760 KB |
| 最終ジャッジ日時 | 2026-05-17 06:10:10 |
| 合計ジャッジ時間 | 1,801 ms |
|
ジャッジサーバーID (参考情報) |
judge2_0 / judge1_1 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| 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")