結果

問題 No.1509 Swap!!
ユーザー convexineqconvexineq
提出日時 2021-05-15 12:44:02
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 221 ms / 2,000 ms
コード長 152 bytes
コンパイル時間 303 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 76,920 KB
最終ジャッジ日時 2024-10-03 00:32:47
合計ジャッジ時間 8,231 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
52,224 KB
testcase_01 AC 43 ms
52,992 KB
testcase_02 AC 216 ms
76,764 KB
testcase_03 AC 211 ms
76,544 KB
testcase_04 AC 212 ms
76,288 KB
testcase_05 AC 211 ms
76,288 KB
testcase_06 AC 214 ms
76,544 KB
testcase_07 AC 216 ms
76,288 KB
testcase_08 AC 211 ms
76,920 KB
testcase_09 AC 214 ms
76,544 KB
testcase_10 AC 218 ms
76,160 KB
testcase_11 AC 194 ms
76,612 KB
testcase_12 AC 196 ms
75,956 KB
testcase_13 AC 198 ms
75,904 KB
testcase_14 AC 198 ms
76,032 KB
testcase_15 AC 198 ms
76,264 KB
testcase_16 AC 193 ms
75,992 KB
testcase_17 AC 188 ms
76,268 KB
testcase_18 AC 192 ms
76,288 KB
testcase_19 AC 190 ms
76,416 KB
testcase_20 AC 187 ms
76,340 KB
testcase_21 AC 188 ms
76,076 KB
testcase_22 AC 193 ms
76,404 KB
testcase_23 AC 193 ms
76,288 KB
testcase_24 AC 220 ms
76,544 KB
testcase_25 AC 221 ms
76,416 KB
testcase_26 AC 221 ms
76,672 KB
testcase_27 AC 203 ms
76,672 KB
testcase_28 AC 201 ms
76,288 KB
testcase_29 AC 202 ms
76,032 KB
testcase_30 AC 200 ms
76,632 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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