結果

問題 No.1509 Swap!!
ユーザー convexineqconvexineq
提出日時 2021-05-15 12:42:16
言語 PyPy3
(7.3.15)
結果
RE  
実行時間 -
コード長 131 bytes
コンパイル時間 324 ms
コンパイル使用メモリ 82,272 KB
実行使用メモリ 76,544 KB
最終ジャッジ日時 2024-10-03 00:28:17
合計ジャッジ時間 6,984 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 RE -
testcase_01 RE -
testcase_02 RE -
testcase_03 RE -
testcase_04 RE -
testcase_05 RE -
testcase_06 RE -
testcase_07 RE -
testcase_08 RE -
testcase_09 RE -
testcase_10 RE -
testcase_11 AC 178 ms
76,044 KB
testcase_12 AC 187 ms
76,544 KB
testcase_13 AC 178 ms
75,900 KB
testcase_14 AC 199 ms
76,132 KB
testcase_15 AC 188 ms
76,040 KB
testcase_16 AC 172 ms
76,284 KB
testcase_17 AC 189 ms
76,100 KB
testcase_18 AC 190 ms
76,184 KB
testcase_19 AC 181 ms
76,356 KB
testcase_20 AC 188 ms
76,220 KB
testcase_21 AC 190 ms
76,120 KB
testcase_22 AC 167 ms
76,252 KB
testcase_23 AC 165 ms
76,008 KB
testcase_24 RE -
testcase_25 RE -
testcase_26 RE -
testcase_27 RE -
testcase_28 RE -
testcase_29 RE -
testcase_30 AC 170 ms
76,224 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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