結果

問題 No.2953 Maximum Right Triangle
ユーザー hato336hato336
提出日時 2024-11-08 21:31:58
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 50 ms / 2,000 ms
コード長 406 bytes
コンパイル時間 187 ms
コンパイル使用メモリ 82,480 KB
実行使用メモリ 53,120 KB
最終ジャッジ日時 2024-11-08 21:32:01
合計ジャッジ時間 1,058 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

import math
def solve():
    d,x,y = map(int,input().split())
    if x == 0 or y == 0:
        print(max(x,y)*d)
        return
    g = math.gcd(x,y)
    ans = 0
    
    xx = x//g
    yy = y//g
    z = min(x//yy,(d-y)//xx)
  
    ans = max(ans,abs(x*(y+z*xx)-y*(x-z*yy)))


    z = min((d-x)//yy,y//xx)
    ans = max(ans,abs(x*(y-z*xx)-y*(x+z*yy)))
    print(ans)
for i in range(int(input())):
    solve()
0