結果

問題 No.1509 Swap!!
ユーザー aaaaaaaaaa2230aaaaaaaaaa2230
提出日時 2021-05-15 08:51:47
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 229 ms / 2,000 ms
コード長 179 bytes
コンパイル時間 352 ms
コンパイル使用メモリ 81,916 KB
実行使用メモリ 77,004 KB
最終ジャッジ日時 2024-10-02 15:26:20
合計ジャッジ時間 10,488 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,492 KB
testcase_01 AC 40 ms
53,016 KB
testcase_02 AC 225 ms
76,596 KB
testcase_03 AC 223 ms
76,604 KB
testcase_04 AC 229 ms
76,568 KB
testcase_05 AC 221 ms
76,240 KB
testcase_06 AC 225 ms
76,732 KB
testcase_07 AC 227 ms
76,804 KB
testcase_08 AC 226 ms
76,304 KB
testcase_09 AC 228 ms
76,648 KB
testcase_10 AC 229 ms
77,004 KB
testcase_11 AC 198 ms
76,192 KB
testcase_12 AC 195 ms
76,056 KB
testcase_13 AC 199 ms
76,596 KB
testcase_14 AC 199 ms
76,428 KB
testcase_15 AC 200 ms
76,072 KB
testcase_16 AC 189 ms
76,080 KB
testcase_17 AC 191 ms
76,472 KB
testcase_18 AC 190 ms
76,256 KB
testcase_19 AC 191 ms
76,492 KB
testcase_20 AC 189 ms
76,068 KB
testcase_21 AC 221 ms
76,568 KB
testcase_22 AC 218 ms
76,624 KB
testcase_23 AC 224 ms
76,692 KB
testcase_24 AC 219 ms
76,520 KB
testcase_25 AC 217 ms
76,396 KB
testcase_26 AC 224 ms
76,480 KB
testcase_27 AC 204 ms
76,456 KB
testcase_28 AC 202 ms
76,136 KB
testcase_29 AC 203 ms
76,348 KB
testcase_30 AC 207 ms
76,008 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import math
t = int(input())
for _ in range(t):
    n,a,b = map(int,input().split())

    if math.gcd(a,b) == 1 and a-1 <= n-b:
        print("YES")

    else:
        print("NO")
0