結果
| 問題 | No.1850 Rewrite Product |
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2022-02-26 13:09:24 |
| 言語 | PyPy3 (7.3.17) |
| 結果 |
AC
|
| 実行時間 | 321 ms / 2,000 ms |
| + 412µs | |
| コード長 | 182 bytes |
| 記録 | |
| コンパイル時間 | 238 ms |
| コンパイル使用メモリ | 95,468 KB |
| 実行使用メモリ | 84,096 KB |
| 最終ジャッジ日時 | 2026-08-06 06:28:35 |
| 合計ジャッジ時間 | 1,679 ms |
|
ジャッジサーバーID (参考情報) |
judge1_0 / judge3_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 1 |
| other | AC * 1 |
ソースコード
T = int(input())
for _ in range(T):
x,y = map(int,input().split())
if x > 4:
print('Yes')
elif x >= y:
print('Yes')
else:
print('No')