結果

問題 No.1509 Swap!!
ユーザー とりゐとりゐ
提出日時 2022-05-18 00:54:14
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 137 ms / 2,000 ms
コード長 200 bytes
コンパイル時間 162 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 76,544 KB
最終ジャッジ日時 2024-09-15 23:55:45
合計ジャッジ時間 5,727 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
51,456 KB
testcase_01 AC 42 ms
52,608 KB
testcase_02 AC 137 ms
76,160 KB
testcase_03 AC 137 ms
76,544 KB
testcase_04 AC 136 ms
76,160 KB
testcase_05 AC 135 ms
76,288 KB
testcase_06 AC 134 ms
76,160 KB
testcase_07 AC 133 ms
75,904 KB
testcase_08 AC 135 ms
76,160 KB
testcase_09 AC 135 ms
75,648 KB
testcase_10 AC 134 ms
76,160 KB
testcase_11 AC 104 ms
76,416 KB
testcase_12 AC 104 ms
75,520 KB
testcase_13 AC 105 ms
75,776 KB
testcase_14 AC 104 ms
76,416 KB
testcase_15 AC 105 ms
76,416 KB
testcase_16 AC 96 ms
75,904 KB
testcase_17 AC 97 ms
75,776 KB
testcase_18 AC 97 ms
76,032 KB
testcase_19 AC 97 ms
76,416 KB
testcase_20 AC 97 ms
75,776 KB
testcase_21 AC 123 ms
76,160 KB
testcase_22 AC 128 ms
76,160 KB
testcase_23 AC 127 ms
76,160 KB
testcase_24 AC 127 ms
75,904 KB
testcase_25 AC 126 ms
76,160 KB
testcase_26 AC 126 ms
75,904 KB
testcase_27 AC 111 ms
76,416 KB
testcase_28 AC 111 ms
76,160 KB
testcase_29 AC 111 ms
76,160 KB
testcase_30 AC 111 ms
76,416 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from sys import stdin
input=lambda :stdin.readline()[:-1]

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