結果

問題 No.1509 Swap!!
ユーザー aaaaaaaaaa2230
提出日時 2021-05-14 22:44:00
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 156 bytes
コンパイル時間 167 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 76,800 KB
最終ジャッジ日時 2024-10-02 03:01:40
合計ジャッジ時間 7,536 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 1
other AC * 3 WA * 27
権限があれば一括ダウンロードができます

ソースコード

diff #

t = int(input())
for _ in range(t):
    n,a,b = map(int,input().split())

    if a != b and (a%2 or b%2):
        print("YES")
    else:
        print("NO")
0