結果

問題 No.1509 Swap!!
ユーザー tamatotamato
提出日時 2021-05-14 22:37:58
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 124 ms / 2,000 ms
コード長 347 bytes
コンパイル時間 306 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 76,800 KB
最終ジャッジ日時 2024-10-02 02:36:31
合計ジャッジ時間 5,430 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
52,608 KB
testcase_01 AC 41 ms
52,864 KB
testcase_02 AC 123 ms
76,552 KB
testcase_03 AC 124 ms
76,628 KB
testcase_04 AC 123 ms
76,416 KB
testcase_05 AC 124 ms
76,416 KB
testcase_06 AC 121 ms
76,416 KB
testcase_07 AC 123 ms
76,800 KB
testcase_08 AC 124 ms
76,668 KB
testcase_09 AC 122 ms
76,376 KB
testcase_10 AC 123 ms
76,396 KB
testcase_11 AC 98 ms
76,488 KB
testcase_12 AC 99 ms
76,448 KB
testcase_13 AC 100 ms
76,436 KB
testcase_14 AC 100 ms
76,288 KB
testcase_15 AC 98 ms
76,544 KB
testcase_16 AC 91 ms
76,288 KB
testcase_17 AC 91 ms
76,276 KB
testcase_18 AC 91 ms
76,160 KB
testcase_19 AC 90 ms
75,904 KB
testcase_20 AC 91 ms
75,904 KB
testcase_21 AC 113 ms
76,788 KB
testcase_22 AC 118 ms
76,672 KB
testcase_23 AC 117 ms
76,288 KB
testcase_24 AC 117 ms
76,264 KB
testcase_25 AC 115 ms
76,224 KB
testcase_26 AC 112 ms
76,160 KB
testcase_27 AC 99 ms
75,904 KB
testcase_28 AC 97 ms
76,544 KB
testcase_29 AC 98 ms
76,204 KB
testcase_30 AC 98 ms
76,416 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

mod = 1000000007
eps = 10**-9


def main():
    import sys
    from math import gcd
    input = sys.stdin.readline

    for _ in range(int(input())):
        N, A, B = map(int, input().split())
        if gcd(A, B) != 1 or (N-A) + (N-B) < N-1:
            print("NO")
        else:
            print("YES")


if __name__ == '__main__':
    main()
0