結果

問題 No.1850 Rewrite Product
ユーザー ShirotsumeShirotsume
提出日時 2022-02-25 21:50:16
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 218 bytes
コンパイル時間 275 ms
コンパイル使用メモリ 87,128 KB
実行使用メモリ 78,440 KB
最終ジャッジ日時 2023-09-16 16:39:33
合計ジャッジ時間 1,433 ms
ジャッジサーバーID
(参考情報)
judge12 / judge15
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 97 ms
72,492 KB
testcase_01 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

from functools import lru_cache


def solve():
    x, y = map(int,input().split())
    if x != 1:
        return 'Yes'
    else:
        return 'No'
                


for _ in range(int(input())):
    print(solve())

0