結果

問題 No.2953 Maximum Right Triangle
ユーザー tassei903tassei903
提出日時 2024-11-11 00:05:18
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 35 ms / 2,000 ms
コード長 616 bytes
コンパイル時間 481 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 53,120 KB
最終ジャッジ日時 2024-11-11 00:05:20
合計ジャッジ時間 1,101 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
52,352 KB
testcase_01 AC 34 ms
52,096 KB
testcase_02 AC 34 ms
52,608 KB
testcase_03 AC 33 ms
52,096 KB
testcase_04 AC 34 ms
53,120 KB
testcase_05 AC 34 ms
52,480 KB
testcase_06 AC 35 ms
52,992 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = lambda :sys.stdin.readline()[:-1]
ni = lambda :int(input())
na = lambda :list(map(int,input().split()))
yes = lambda :print("yes");Yes = lambda :print("Yes");YES = lambda : print("YES")
no = lambda :print("no");No = lambda :print("No");NO = lambda : print("NO")
#######################################################################
from math import gcd
for _ in range(ni()):
    d, x, y = na()
    g = gcd(x, y)
    if y > x:
        x, y = y, x
    s = (d - y) // (x // g)
    if y:
        s = min(s, x // (y // g))
    
    X = x - s * y
    Y = y + s * x
    print((x * x + y * y) * s // g)
0