結果

問題 No.2953 Maximum Right Triangle
ユーザー kazuppakazuppa
提出日時 2024-11-08 22:11:12
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 50 ms / 2,000 ms
コード長 588 bytes
コンパイル時間 299 ms
コンパイル使用メモリ 81,920 KB
実行使用メモリ 58,368 KB
最終ジャッジ日時 2024-11-08 22:11:19
合計ジャッジ時間 1,051 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
52,096 KB
testcase_01 AC 42 ms
52,480 KB
testcase_02 AC 49 ms
57,984 KB
testcase_03 AC 42 ms
51,968 KB
testcase_04 AC 49 ms
58,368 KB
testcase_05 AC 50 ms
52,864 KB
testcase_06 AC 45 ms
52,736 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
import math


def gcd(a, b):
    c = a
    d = b
    if c == 0 or d == 0:
        return max(a, b)
    if c < d:
        e = c
        c = d
        d = e
    while c % d != 0:
        c %= d
        e = c
        c = d
        d = e
    return d


t = int(input())
for i in range(t):
    d, x, y = map(int, input().split())
    if x == 0 or y == 0:
        print(max(x, y) * d)
        continue
    e = y
    f = x
    g = gcd(e, f)
    e //= g
    f //= g
    c = min((d - y) // f, x // e)
    o = min(y // f, (d - x) // e)
    print(max(0, max(c, o) * (e * e + f * f) * g))
0