結果

問題 No.1509 Swap!!
ユーザー KudeKude
提出日時 2021-05-15 00:06:16
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 242 ms / 2,000 ms
コード長 226 bytes
コンパイル時間 176 ms
コンパイル使用メモリ 81,904 KB
実行使用メモリ 76,844 KB
最終ジャッジ日時 2024-10-02 06:48:22
合計ジャッジ時間 8,722 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
51,968 KB
testcase_01 AC 44 ms
52,992 KB
testcase_02 AC 236 ms
76,544 KB
testcase_03 AC 240 ms
76,672 KB
testcase_04 AC 240 ms
76,416 KB
testcase_05 AC 232 ms
76,844 KB
testcase_06 AC 235 ms
76,500 KB
testcase_07 AC 238 ms
76,672 KB
testcase_08 AC 236 ms
76,288 KB
testcase_09 AC 235 ms
76,544 KB
testcase_10 AC 237 ms
76,664 KB
testcase_11 AC 210 ms
76,288 KB
testcase_12 AC 208 ms
76,416 KB
testcase_13 AC 211 ms
76,188 KB
testcase_14 AC 212 ms
76,032 KB
testcase_15 AC 209 ms
76,288 KB
testcase_16 AC 202 ms
76,032 KB
testcase_17 AC 203 ms
76,288 KB
testcase_18 AC 202 ms
76,160 KB
testcase_19 AC 202 ms
76,032 KB
testcase_20 AC 203 ms
76,544 KB
testcase_21 AC 242 ms
76,584 KB
testcase_22 AC 226 ms
76,508 KB
testcase_23 AC 234 ms
76,416 KB
testcase_24 AC 230 ms
76,672 KB
testcase_25 AC 232 ms
76,032 KB
testcase_26 AC 234 ms
76,776 KB
testcase_27 AC 212 ms
76,032 KB
testcase_28 AC 215 ms
76,032 KB
testcase_29 AC 217 ms
76,544 KB
testcase_30 AC 217 ms
76,240 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 - 1 < n:
        print('YES')
    else:
        print('NO')
0