結果

問題 No.1509 Swap!!
ユーザー 👑 rin204rin204
提出日時 2022-01-27 00:51:10
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 240 bytes
コンパイル時間 169 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 77,056 KB
最終ジャッジ日時 2024-06-06 08:48:37
合計ジャッジ時間 8,558 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
51,584 KB
testcase_01 WA -
testcase_02 AC 231 ms
76,672 KB
testcase_03 AC 237 ms
76,288 KB
testcase_04 AC 225 ms
77,056 KB
testcase_05 AC 233 ms
76,672 KB
testcase_06 AC 226 ms
76,928 KB
testcase_07 AC 225 ms
76,544 KB
testcase_08 AC 237 ms
76,928 KB
testcase_09 AC 227 ms
76,416 KB
testcase_10 AC 229 ms
76,544 KB
testcase_11 AC 214 ms
76,288 KB
testcase_12 AC 210 ms
76,288 KB
testcase_13 AC 210 ms
76,672 KB
testcase_14 AC 216 ms
76,672 KB
testcase_15 AC 210 ms
76,288 KB
testcase_16 AC 208 ms
76,288 KB
testcase_17 AC 198 ms
76,032 KB
testcase_18 AC 193 ms
76,288 KB
testcase_19 AC 212 ms
76,672 KB
testcase_20 AC 189 ms
76,544 KB
testcase_21 AC 218 ms
76,544 KB
testcase_22 AC 209 ms
76,288 KB
testcase_23 AC 231 ms
76,288 KB
testcase_24 WA -
testcase_25 WA -
testcase_26 WA -
testcase_27 AC 203 ms
76,032 KB
testcase_28 AC 209 ms
76,032 KB
testcase_29 AC 201 ms
76,416 KB
testcase_30 AC 205 ms
76,288 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from math import gcd

def solve():
    n, a, b = map(int, input().split())
    if gcd(a, b) != 1:
        print("NO")
    elif a + b  - 1 < n:
        print("YES")
    else:
        print("NO")
    
for _ in range(int(input())):
    solve()
0