結果

問題 No.2953 Maximum Right Triangle
ユーザー ねしんねしん
提出日時 2024-11-08 21:36:30
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 63 ms / 2,000 ms
コード長 854 bytes
コンパイル時間 275 ms
コンパイル使用メモリ 82,308 KB
実行使用メモリ 60,800 KB
最終ジャッジ日時 2024-11-08 21:36:42
合計ジャッジ時間 1,237 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 46 ms
52,480 KB
testcase_01 AC 45 ms
52,352 KB
testcase_02 AC 55 ms
59,648 KB
testcase_03 AC 44 ms
52,224 KB
testcase_04 AC 63 ms
60,800 KB
testcase_05 AC 48 ms
52,864 KB
testcase_06 AC 47 ms
52,480 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def gcd(a,b):
  if b==0:
    return a
  else:
    return gcd(b,a%b)
T=int(input())
for _ in range(T):
  D,x,y=list(map(int,input().split()))
  if x==0:
    print(y*D)
    continue
  if y==0:
    print(x*D)
    continue
  t=gcd(max(x,y),min(x,y))
  X=-y//t
  Y=x//t
  if ((not 0<=x-X <=D) or ((not 0<=y-Y <=D))) and ((not 0<=x+X <=D) or ((not 0<=y+Y <=D))):
    print(0)
    continue
  ans1=0
  ans2=0
  if (0<=x-X <=D) and (0<=y-Y <=D):
    ok=1
    ng=D
    while abs(ok-ng)>1:
      m=(ng+ok)//2
      if (0<=x-m*X <=D) and (0<=y-m*Y <=D):
        ok=m
      else:
        ng=m
    ans1=abs(x*(y-ok*Y)-y*(x-ok*X))
  if (0<=x+X <=D) and (0<=y+Y <=D):
    ok=1
    ng=D
    while abs(ok-ng)>1:
      m=(ng+ok)//2
      if (0<=x+m*X <=D) and (0<=y+m*Y <=D):
        ok=m
      else:
        ng=m
    ans2=abs(x*(y+ok*Y)-y*(x+ok*X))
  print(max(ans1,ans2))
0