結果

問題 No.2953 Maximum Right Triangle
ユーザー moon17moon17
提出日時 2024-11-08 22:22:44
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 43 ms / 2,000 ms
コード長 504 bytes
コンパイル時間 217 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 53,248 KB
最終ジャッジ日時 2024-11-08 22:22:50
合計ジャッジ時間 1,030 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
51,840 KB
testcase_01 AC 42 ms
52,352 KB
testcase_02 AC 41 ms
52,992 KB
testcase_03 AC 39 ms
52,224 KB
testcase_04 AC 43 ms
53,248 KB
testcase_05 AC 40 ms
52,992 KB
testcase_06 AC 40 ms
52,736 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from math import*
t=int(input())
for _ in range(t):
  d,x,y=map(int,input().split())
  if y==0:
    print(x*d)
    continue
  if x==0:
    print(y*d)
    continue
  g=gcd(x,y)
  ans=0
  for i,j in(-y//g,x//g),(y//g,-x//g):
    if i<0:
      m=x//abs(i)
      if j<0:
        m=min(m,y//abs(j))
      else:
        m=min(m,(d-y)//j)
    else:
      m=(d-x)//i
      if j<0:
        m=min(m,y//abs(j))
      else:
        m=min(m,(d-y)//j)
    bx,by=x+m*i,y+m*j
    ans=max(ans,abs(x*by-bx*y))
  print(ans)
0