結果
| 問題 | No.1850 Rewrite Product |
| コンテスト | |
| ユーザー |
👑 Kazun
|
| 提出日時 | 2022-02-25 21:25:59 |
| 言語 | PyPy3 (7.3.17) |
| 結果 |
AC
|
| 実行時間 | 316 ms / 2,000 ms |
| + 352µs | |
| コード長 | 193 bytes |
| 記録 | |
| コンパイル時間 | 225 ms |
| コンパイル使用メモリ | 95,976 KB |
| 実行使用メモリ | 85,888 KB |
| 最終ジャッジ日時 | 2026-08-05 05:00:57 |
| 合計ジャッジ時間 | 1,681 ms |
|
ジャッジサーバーID (参考情報) |
judge2_0 / judge3_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 1 |
| other | AC * 1 |
ソースコード
T=int(input())
Ans=[0]*T
for t in range(T):
X,Y=map(int,input().split())
if X<=4:
if X>=Y:
Ans[t]=1
else:
Ans[t]=1
print("Yes" if Ans[t] else "No")
Kazun