結果

問題 No.2953 Maximum Right Triangle
ユーザー tipstar0125tipstar0125
提出日時 2024-11-08 21:49:59
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 530 bytes
コンパイル時間 203 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 64,512 KB
最終ジャッジ日時 2024-11-08 21:50:17
合計ジャッジ時間 1,038 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,224 KB
testcase_01 WA -
testcase_02 WA -
testcase_03 WA -
testcase_04 WA -
testcase_05 AC 53 ms
60,928 KB
testcase_06 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

T=int(input())
for _ in range(T):
    D,x,y=map(int,input().split())
    def in_map(x,y):
        return 0<=x<=D and 0<=y<=D
    ans=0

    ok=0
    ng=int(1e9)
    while ng-ok>1:
        m=(ok+ng)//2
        
        nx=x-y*m
        ny=y+x*m
        if in_map(nx,ny):ok=m
        else:ng=m

    ans=max(ans,ok*(x**2+y**2))

    ok=0
    ng=int(1e9)
    while ng-ok>1:
        m=(ok+ng)//2
        
        nx=x+y*m
        ny=y-x*m
        if in_map(nx,ny):ok=m
        else:ng=m
    ans=max(ans,ok*(x**2+y**2))
    print(ans)
0