結果

問題 No.1509 Swap!!
ユーザー marroncastlemarroncastle
提出日時 2021-05-14 23:34:00
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 118 ms / 2,000 ms
コード長 513 bytes
コンパイル時間 277 ms
コンパイル使用メモリ 82,768 KB
実行使用メモリ 78,088 KB
最終ジャッジ日時 2024-10-02 05:35:09
合計ジャッジ時間 5,060 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
51,840 KB
testcase_01 AC 36 ms
52,608 KB
testcase_02 AC 114 ms
77,880 KB
testcase_03 AC 116 ms
77,568 KB
testcase_04 AC 115 ms
77,504 KB
testcase_05 AC 116 ms
78,088 KB
testcase_06 AC 115 ms
77,952 KB
testcase_07 AC 116 ms
77,696 KB
testcase_08 AC 118 ms
77,696 KB
testcase_09 AC 115 ms
77,508 KB
testcase_10 AC 115 ms
77,568 KB
testcase_11 AC 89 ms
77,184 KB
testcase_12 AC 88 ms
77,696 KB
testcase_13 AC 89 ms
77,440 KB
testcase_14 AC 88 ms
77,952 KB
testcase_15 AC 89 ms
78,000 KB
testcase_16 AC 81 ms
77,824 KB
testcase_17 AC 82 ms
77,428 KB
testcase_18 AC 82 ms
77,696 KB
testcase_19 AC 81 ms
77,464 KB
testcase_20 AC 81 ms
77,796 KB
testcase_21 AC 110 ms
77,804 KB
testcase_22 AC 110 ms
77,696 KB
testcase_23 AC 109 ms
77,568 KB
testcase_24 AC 113 ms
77,696 KB
testcase_25 AC 112 ms
77,696 KB
testcase_26 AC 112 ms
78,048 KB
testcase_27 AC 79 ms
77,952 KB
testcase_28 AC 80 ms
77,696 KB
testcase_29 AC 81 ms
77,580 KB
testcase_30 AC 100 ms
77,816 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys,os,io
input = sys.stdin.readline
#input = io.BytesIO(os.read(0,os.fstat(0).st_size)).readline
T = int(input())
ans = ['NO']*T
def extgcd(a, b): # ax + by = d
  if b==0:
    return a, 1, 0 # a・1 + b・0 = a (b = 0のとき)
  d, y, x = extgcd(b, a%b)
  y -= (a//b)*x
  return d, x, y
from math import gcd
for t in range(T):
  N, A, B = map(int, input().split())
  A, B = min(A,B), max(A,B)
  if A==1:
    ans[t] = 'YES'
  elif gcd(A,B)==1:
    if N >= A+B-1:
      ans[t] = 'YES'
print(*ans, sep='\n')
0