結果

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

テストケース

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

ソースコード

diff #

T=int(input())
from math import gcd
for _ in range(T):
  D,x,y=map(int,input().split())
  g=gcd(x,y)
  dx,dy=x//g,y//g
  s=0
  ok=0
  ng=10**10
  while ng-ok>1:
    m=(ok+ng)//2
    if 0<=x-dy*m<=D and 0<=y+dx*m<=D:
      ok=m
    else:
      ng=m
  s=max(s,((x//g)**2+(y//g)**2)*g*ok)
  ok=0
  ng=10**10
  while ng-ok>1:
    m=(ok+ng)//2
    if 0<=x+dy*m<=D and 0<=y-dx*m<=D:
      ok=m
    else:
      ng=m
  s=max(s,((x//g)**2+(y//g)**2)*g*ok)
  print(s)
0