結果

問題 No.1509 Swap!!
ユーザー tpynerivertpyneriver
提出日時 2021-05-14 23:26:56
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 172 ms / 2,000 ms
コード長 493 bytes
コンパイル時間 139 ms
コンパイル使用メモリ 82,444 KB
実行使用メモリ 77,392 KB
最終ジャッジ日時 2024-10-02 05:18:40
合計ジャッジ時間 6,020 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,096 KB
testcase_01 AC 36 ms
52,272 KB
testcase_02 AC 146 ms
76,712 KB
testcase_03 AC 126 ms
76,800 KB
testcase_04 AC 126 ms
76,928 KB
testcase_05 AC 129 ms
77,312 KB
testcase_06 AC 128 ms
76,672 KB
testcase_07 AC 127 ms
76,928 KB
testcase_08 AC 126 ms
76,600 KB
testcase_09 AC 126 ms
76,928 KB
testcase_10 AC 126 ms
77,284 KB
testcase_11 AC 169 ms
76,544 KB
testcase_12 AC 168 ms
76,544 KB
testcase_13 AC 167 ms
76,696 KB
testcase_14 AC 167 ms
76,672 KB
testcase_15 AC 170 ms
76,812 KB
testcase_16 AC 165 ms
76,800 KB
testcase_17 AC 162 ms
77,184 KB
testcase_18 AC 164 ms
76,672 KB
testcase_19 AC 164 ms
76,544 KB
testcase_20 AC 165 ms
76,800 KB
testcase_21 AC 119 ms
76,588 KB
testcase_22 AC 120 ms
76,800 KB
testcase_23 AC 119 ms
76,800 KB
testcase_24 AC 118 ms
76,672 KB
testcase_25 AC 118 ms
77,184 KB
testcase_26 AC 118 ms
77,260 KB
testcase_27 AC 80 ms
77,392 KB
testcase_28 AC 82 ms
76,748 KB
testcase_29 AC 79 ms
76,800 KB
testcase_30 AC 172 ms
77,168 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
readline = sys.stdin.readline

T = int(readline())


def gcd(a, b):
    while b:
        a, b = b, a%b
    return a

def lcm(a, b):
    return a*b//gcd(a, b)


def f(N, A, B):
    if gcd(A, B) != 1:
        return False
    if A > N//2 and B > N//2:
        return False
    if A+B >= N+2:
        return False
    return True

Ans = [None]*T
for qu in range(T):
    N, A, B = map(int, readline().split())
    Ans[qu] = "YES" if f(N, A, B) else "NO"

print('\n'.join(map(str, Ans)))
0