結果

問題 No.1509 Swap!!
ユーザー KudeKude
提出日時 2021-05-15 00:00:34
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 222 bytes
コンパイル時間 198 ms
コンパイル使用メモリ 82,336 KB
実行使用メモリ 77,056 KB
最終ジャッジ日時 2024-10-02 06:39:51
合計ジャッジ時間 8,096 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
51,968 KB
testcase_01 WA -
testcase_02 AC 222 ms
76,476 KB
testcase_03 AC 220 ms
76,640 KB
testcase_04 AC 220 ms
76,912 KB
testcase_05 AC 221 ms
76,316 KB
testcase_06 AC 222 ms
77,056 KB
testcase_07 AC 221 ms
76,672 KB
testcase_08 AC 216 ms
76,288 KB
testcase_09 AC 218 ms
76,636 KB
testcase_10 AC 218 ms
76,676 KB
testcase_11 AC 197 ms
76,032 KB
testcase_12 AC 204 ms
76,288 KB
testcase_13 AC 196 ms
76,032 KB
testcase_14 AC 193 ms
76,032 KB
testcase_15 AC 199 ms
76,416 KB
testcase_16 AC 184 ms
76,664 KB
testcase_17 AC 186 ms
76,800 KB
testcase_18 AC 185 ms
76,236 KB
testcase_19 AC 186 ms
76,128 KB
testcase_20 AC 193 ms
76,544 KB
testcase_21 AC 214 ms
76,460 KB
testcase_22 AC 214 ms
76,384 KB
testcase_23 AC 215 ms
76,580 KB
testcase_24 WA -
testcase_25 WA -
testcase_26 WA -
testcase_27 AC 199 ms
76,708 KB
testcase_28 AC 197 ms
76,736 KB
testcase_29 AC 201 ms
76,120 KB
testcase_30 AC 201 ms
76,160 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from math import gcd
for _ in range(int(input())):
    n, a, b = map(int, input().split())
    if gcd(a, b) > 1:
        print('NO')
        continue
    if a - 1 + b < n:
        print('YES')
    else:
        print('NO')
0