結果

問題 No.1509 Swap!!
ユーザー convexineqconvexineq
提出日時 2021-05-14 23:44:43
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 236 ms / 2,000 ms
コード長 215 bytes
コンパイル時間 345 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 76,928 KB
最終ジャッジ日時 2024-10-02 05:57:43
合計ジャッジ時間 8,420 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
51,712 KB
testcase_01 AC 38 ms
52,608 KB
testcase_02 AC 222 ms
76,800 KB
testcase_03 AC 221 ms
76,724 KB
testcase_04 AC 221 ms
76,416 KB
testcase_05 AC 221 ms
76,568 KB
testcase_06 AC 228 ms
76,380 KB
testcase_07 AC 225 ms
76,672 KB
testcase_08 AC 223 ms
76,672 KB
testcase_09 AC 225 ms
76,800 KB
testcase_10 AC 224 ms
76,928 KB
testcase_11 AC 199 ms
76,380 KB
testcase_12 AC 200 ms
76,712 KB
testcase_13 AC 197 ms
76,672 KB
testcase_14 AC 197 ms
76,304 KB
testcase_15 AC 208 ms
76,472 KB
testcase_16 AC 187 ms
76,516 KB
testcase_17 AC 188 ms
76,544 KB
testcase_18 AC 188 ms
76,552 KB
testcase_19 AC 190 ms
76,544 KB
testcase_20 AC 185 ms
76,528 KB
testcase_21 AC 216 ms
76,640 KB
testcase_22 AC 214 ms
76,544 KB
testcase_23 AC 220 ms
76,544 KB
testcase_24 AC 227 ms
76,544 KB
testcase_25 AC 236 ms
76,580 KB
testcase_26 AC 220 ms
76,928 KB
testcase_27 AC 206 ms
76,120 KB
testcase_28 AC 200 ms
76,468 KB
testcase_29 AC 200 ms
76,672 KB
testcase_30 AC 206 ms
76,616 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from math import gcd
def check(n,a,b):
    if gcd(a,b) > 1:
        return 0
    return a+b <= n+1

T = int(input())
for _ in range(T):
    n,a,b = map(int,input().split())
    print("YES" if check(n,a,b) else "NO")
0