結果

問題 No.1509 Swap!!
ユーザー ああああ
提出日時 2024-01-23 13:27:15
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 224 bytes
コンパイル時間 400 ms
コンパイル使用メモリ 82,688 KB
実行使用メモリ 83,584 KB
最終ジャッジ日時 2024-09-28 06:43:40
合計ジャッジ時間 7,425 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 WA -
testcase_02 AC 183 ms
83,200 KB
testcase_03 AC 183 ms
83,200 KB
testcase_04 AC 194 ms
83,328 KB
testcase_05 AC 197 ms
83,456 KB
testcase_06 AC 190 ms
83,072 KB
testcase_07 AC 186 ms
83,072 KB
testcase_08 AC 191 ms
83,072 KB
testcase_09 AC 191 ms
82,944 KB
testcase_10 AC 187 ms
82,816 KB
testcase_11 AC 167 ms
82,560 KB
testcase_12 AC 165 ms
82,560 KB
testcase_13 AC 163 ms
82,944 KB
testcase_14 AC 167 ms
82,944 KB
testcase_15 AC 163 ms
82,944 KB
testcase_16 AC 156 ms
82,816 KB
testcase_17 AC 157 ms
82,944 KB
testcase_18 AC 157 ms
83,328 KB
testcase_19 AC 162 ms
82,816 KB
testcase_20 AC 162 ms
83,328 KB
testcase_21 AC 178 ms
82,944 KB
testcase_22 AC 177 ms
82,944 KB
testcase_23 AC 175 ms
83,072 KB
testcase_24 WA -
testcase_25 WA -
testcase_26 WA -
testcase_27 AC 166 ms
83,456 KB
testcase_28 AC 165 ms
83,072 KB
testcase_29 AC 164 ms
83,328 KB
testcase_30 AC 160 ms
82,560 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import math
t=int(input())
nab=[]
for _ in range(t):
	nab.append(list(map(int,input().split())))
for i in range(t) :
	if math.gcd(nab[i][1],nab[i][2])==1 and nab[i][0]>nab[i][1]+nab[i][2]:
		print("YES")
	else:
		print("NO")
0