結果
| 問題 | No.1850 Rewrite Product |
| コンテスト | |
| ユーザー |
tah2
|
| 提出日時 | 2026-04-25 13:48:03 |
| 言語 | Python3 (3.14.7 + numpy 2.5.2 + scipy 1.18.0 + ACL) |
| 結果 |
WA
不安定
|
| 実行時間 | - |
| コード長 | 128 bytes |
| 記録 | |
| コンパイル時間 | 57 ms |
| コンパイル使用メモリ | 15,104 KB |
| 実行使用メモリ | 11,008 KB |
| 最終ジャッジ日時 | 2026-09-12 13:22:34 |
| 合計ジャッジ時間 | 1,852 ms |
|
ジャッジサーバーID (参考情報) |
judge2_0 / judge3_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | WA * 1 |
| other | WA * 1 |
ソースコード
n = int(input())
for i in range(n):
x, y = map(int, input().split())
if x <= 4 and y > x:
print("Yes")
else:
print("No")
tah2