結果

問題 No.2953 Maximum Right Triangle
ユーザー moon17moon17
提出日時 2024-11-08 22:20:29
言語 PyPy3
(7.3.15)
結果
RE  
実行時間 -
コード長 426 bytes
コンパイル時間 286 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 65,152 KB
最終ジャッジ日時 2024-11-08 22:20:30
合計ジャッジ時間 1,247 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

from math import*
t=int(input())
for _ in range(t):
  d,x,y=map(int,input().split())
  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