結果

問題 No.2953 Maximum Right Triangle
ユーザー kazuppakazuppa
提出日時 2024-11-08 21:58:50
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 589 bytes
コンパイル時間 285 ms
コンパイル使用メモリ 81,920 KB
実行使用メモリ 65,152 KB
最終ジャッジ日時 2024-11-08 21:58:52
合計ジャッジ時間 988 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
52,096 KB
testcase_01 WA -
testcase_02 RE -
testcase_03 WA -
testcase_04 RE -
testcase_05 AC 43 ms
52,992 KB
testcase_06 AC 42 ms
52,480 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