結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
51,456 KB
testcase_01 AC 44 ms
52,864 KB
testcase_02 AC 237 ms
76,288 KB
testcase_03 AC 236 ms
76,800 KB
testcase_04 AC 236 ms
76,544 KB
testcase_05 AC 236 ms
76,672 KB
testcase_06 AC 242 ms
76,544 KB
testcase_07 AC 239 ms
76,672 KB
testcase_08 AC 235 ms
76,288 KB
testcase_09 AC 238 ms
76,544 KB
testcase_10 AC 242 ms
76,544 KB
testcase_11 AC 214 ms
76,032 KB
testcase_12 AC 212 ms
76,032 KB
testcase_13 AC 214 ms
76,544 KB
testcase_14 AC 215 ms
76,544 KB
testcase_15 AC 212 ms
76,288 KB
testcase_16 AC 201 ms
76,032 KB
testcase_17 AC 204 ms
76,160 KB
testcase_18 AC 231 ms
76,288 KB
testcase_19 AC 205 ms
76,160 KB
testcase_20 AC 205 ms
76,288 KB
testcase_21 AC 238 ms
76,544 KB
testcase_22 AC 234 ms
76,544 KB
testcase_23 AC 232 ms
76,160 KB
testcase_24 AC 230 ms
76,160 KB
testcase_25 AC 235 ms
76,288 KB
testcase_26 AC 232 ms
76,288 KB
testcase_27 AC 217 ms
75,776 KB
testcase_28 AC 222 ms
75,904 KB
testcase_29 AC 217 ms
76,416 KB
testcase_30 AC 220 ms
76,416 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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