結果

問題 No.2953 Maximum Right Triangle
ユーザー detteiuudetteiuu
提出日時 2024-11-08 21:34:39
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 62 ms / 2,000 ms
コード長 773 bytes
コンパイル時間 190 ms
コンパイル使用メモリ 82,560 KB
実行使用メモリ 62,464 KB
最終ジャッジ日時 2024-11-08 21:34:54
合計ジャッジ時間 1,090 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 43 ms
52,352 KB
testcase_01 AC 43 ms
52,096 KB
testcase_02 AC 55 ms
60,800 KB
testcase_03 AC 42 ms
52,352 KB
testcase_04 AC 55 ms
60,544 KB
testcase_05 AC 56 ms
60,416 KB
testcase_06 AC 62 ms
62,464 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from math import gcd

T = int(input())

def func(nx, ny):
    left = 0
    right = 10**12
    while left+1 < right:
        mid = (left+right)//2
        if 0 <= x+nx*mid <= D and 0 <= y+ny*mid <= D:
            left = mid
        else:
            right = mid
    return left

def area(x1, y1, x2, y2, x3, y3):
    return abs((x1-x3)*(y2-y3)-(x2-x3)*(y1-y3))

for _ in range(T):
    D, x, y = map(int, input().split())
    GCD = gcd(x, y)
    nx, ny = x//GCD, y//GCD
    nx1, ny1 = ny, -nx
    nx2, ny2 = -ny, nx
    cnt1, cnt2 = func(nx1, ny1), func(nx2, ny2)
    if cnt1 == cnt2 == 0:
        print(0)
    else:
        xb1, yb1 = x+nx1*cnt1, y+ny1*cnt1
        xb2, yb2 = x+nx2*cnt2, y+ny2*cnt2
        print(max(area(0, 0, x, y, xb1, yb1), area(0, 0, x, y, xb2, yb2)))
0