結果
| 問題 | No.1850 Rewrite Product |
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2023-03-31 20:25:49 |
| 言語 | PyPy3 (7.3.23 + ACL) |
| 結果 |
AC
不安定
|
| 実行時間 | 330 ms / 2,000 ms |
| + 856µs | |
| コード長 | 102 bytes |
| 記録 | |
| コンパイル時間 | 491 ms |
| コンパイル使用メモリ | 96,196 KB |
| 実行使用メモリ | 84,864 KB |
| 最終ジャッジ日時 | 2026-09-02 20:07:32 |
| 合計ジャッジ時間 | 1,966 ms |
|
ジャッジサーバーID (参考情報) |
judge3_0 / judge2_1 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 1 |
| other | AC * 1 |
ソースコード
for _ in range(int(input())):
n,m=map(int,input().split())
print("Yes"if(n>=m or 4<n)else"No")