結果
問題 | No.2953 Maximum Right Triangle |
ユーザー | tipstar0125 |
提出日時 | 2024-11-08 21:53:55 |
言語 | PyPy3 (7.3.15) |
結果 |
WA
|
実行時間 | - |
コード長 | 532 bytes |
コンパイル時間 | 444 ms |
コンパイル使用メモリ | 82,304 KB |
実行使用メモリ | 72,960 KB |
最終ジャッジ日時 | 2024-11-08 21:54:09 |
合計ジャッジ時間 | 1,168 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 42 ms
52,096 KB |
testcase_01 | WA | - |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | AC | 66 ms
65,024 KB |
testcase_06 | WA | - |
ソースコード
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(1e18) 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(1e18) 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)