結果

問題 No.2953 Maximum Right Triangle
ユーザー hiro1729hiro1729
提出日時 2024-11-08 21:25:58
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 48 ms / 2,000 ms
コード長 374 bytes
コンパイル時間 260 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 52,736 KB
最終ジャッジ日時 2024-11-08 21:26:03
合計ジャッジ時間 1,162 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 43 ms
52,096 KB
testcase_01 AC 41 ms
52,096 KB
testcase_02 AC 48 ms
52,736 KB
testcase_03 AC 42 ms
52,352 KB
testcase_04 AC 45 ms
52,608 KB
testcase_05 AC 45 ms
52,608 KB
testcase_06 AC 46 ms
52,352 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from math import gcd

for _ in range(int(input())):
	D, x, y = map(int, input().split())
	if x == 0:
		print(y * D)
	elif y == 0:
		print(x * D)
	else:
		g = gcd(x, y)
		xg, yg = x // g, y // g
		ans = 0
		a1 = min((D - y) // xg, x // yg)
		ans = max(ans, (x * x + y * y) // g * a1)
		a2 = min((D - x) // yg, y // xg)
		ans = max(ans, (x * x + y * y) // g * a2)
		print(ans)
0