結果
| 問題 | No.1850 Rewrite Product |
| コンテスト | |
| ユーザー |
titia
|
| 提出日時 | 2022-02-25 21:23:02 |
| 言語 | Python3 (3.14.3 + numpy 2.4.4 + scipy 1.17.1) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 211 bytes |
| 記録 | |
| コンパイル時間 | 511 ms |
| コンパイル使用メモリ | 20,608 KB |
| 実行使用メモリ | 15,356 KB |
| 最終ジャッジ日時 | 2026-03-24 23:59:27 |
| 合計ジャッジ時間 | 1,154 ms |
|
ジャッジサーバーID (参考情報) |
judge3_0 / judge2_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 1 |
| other | WA * 1 |
ソースコード
import sys
input = sys.stdin.readline
T=int(input())
for tests in range(T):
X,Y=map(int,input().split())
if X==Y:
print("Yes")
elif X==1:
print("No")
else:
print("Yes")
titia