結果

問題 No.1509 Swap!!
ユーザー mine691mine691
提出日時 2021-04-07 10:38:04
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 232 ms / 2,000 ms
コード長 172 bytes
コンパイル時間 311 ms
コンパイル使用メモリ 82,112 KB
実行使用メモリ 76,952 KB
最終ジャッジ日時 2024-09-13 08:36:30
合計ジャッジ時間 8,516 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,028 KB
testcase_01 AC 41 ms
54,120 KB
testcase_02 AC 232 ms
76,268 KB
testcase_03 AC 231 ms
76,328 KB
testcase_04 AC 227 ms
76,256 KB
testcase_05 AC 230 ms
76,348 KB
testcase_06 AC 231 ms
76,952 KB
testcase_07 AC 232 ms
76,696 KB
testcase_08 AC 228 ms
76,368 KB
testcase_09 AC 231 ms
76,392 KB
testcase_10 AC 228 ms
76,604 KB
testcase_11 AC 205 ms
75,968 KB
testcase_12 AC 203 ms
76,176 KB
testcase_13 AC 203 ms
76,340 KB
testcase_14 AC 204 ms
76,140 KB
testcase_15 AC 200 ms
76,052 KB
testcase_16 AC 195 ms
76,244 KB
testcase_17 AC 194 ms
76,180 KB
testcase_18 AC 196 ms
76,084 KB
testcase_19 AC 198 ms
76,152 KB
testcase_20 AC 197 ms
76,000 KB
testcase_21 AC 223 ms
76,284 KB
testcase_22 AC 220 ms
76,344 KB
testcase_23 AC 227 ms
76,492 KB
testcase_24 AC 225 ms
76,148 KB
testcase_25 AC 224 ms
76,380 KB
testcase_26 AC 223 ms
76,248 KB
testcase_27 AC 207 ms
76,116 KB
testcase_28 AC 211 ms
76,404 KB
testcase_29 AC 207 ms
76,336 KB
testcase_30 AC 207 ms
76,180 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 + b <= n + 1):
    print("YES")
  else:
    print("NO")
0