結果

問題 No.1509 Swap!!
ユーザー rlangevinrlangevin
提出日時 2023-10-04 00:08:42
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 122 ms / 2,000 ms
コード長 232 bytes
コンパイル時間 353 ms
コンパイル使用メモリ 82,688 KB
実行使用メモリ 76,672 KB
最終ジャッジ日時 2024-07-26 14:14:30
合計ジャッジ時間 5,631 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
52,096 KB
testcase_01 AC 38 ms
52,608 KB
testcase_02 AC 121 ms
76,160 KB
testcase_03 AC 121 ms
76,288 KB
testcase_04 AC 120 ms
76,160 KB
testcase_05 AC 122 ms
76,288 KB
testcase_06 AC 112 ms
75,960 KB
testcase_07 AC 111 ms
76,412 KB
testcase_08 AC 111 ms
76,268 KB
testcase_09 AC 110 ms
76,672 KB
testcase_10 AC 114 ms
76,160 KB
testcase_11 AC 88 ms
76,152 KB
testcase_12 AC 84 ms
76,436 KB
testcase_13 AC 84 ms
76,492 KB
testcase_14 AC 83 ms
76,544 KB
testcase_15 AC 84 ms
75,904 KB
testcase_16 AC 77 ms
76,216 KB
testcase_17 AC 80 ms
76,544 KB
testcase_18 AC 79 ms
75,988 KB
testcase_19 AC 79 ms
76,412 KB
testcase_20 AC 76 ms
76,032 KB
testcase_21 AC 101 ms
76,032 KB
testcase_22 AC 106 ms
76,160 KB
testcase_23 AC 105 ms
76,544 KB
testcase_24 AC 106 ms
76,160 KB
testcase_25 AC 103 ms
76,056 KB
testcase_26 AC 105 ms
76,160 KB
testcase_27 AC 89 ms
76,420 KB
testcase_28 AC 90 ms
76,160 KB
testcase_29 AC 91 ms
76,080 KB
testcase_30 AC 87 ms
76,232 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline
from math import gcd

T = int(input())
for _ in range(T):
    N, A, B = map(int, input().split())
    if gcd(A, B) == 1 and A - 1 <= N - B:
        print("YES")
    else:
        print("NO")    
0