結果

問題 No.2010 Magical Floor
ユーザー yuusanlondonyuusanlondon
提出日時 2022-07-15 23:14:22
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 731 bytes
コンパイル時間 463 ms
コンパイル使用メモリ 87,348 KB
実行使用メモリ 79,036 KB
最終ジャッジ日時 2023-09-10 04:54:42
合計ジャッジ時間 4,163 ms
ジャッジサーバーID
(参考情報)
judge15 / judge14
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 73 ms
71,816 KB
testcase_01 WA -
testcase_02 AC 78 ms
71,932 KB
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

import math
t=int(input())
for _ in range(t):
  n,x=map(int,input().split())
  h=list(map(int,input().split()))
  v=list(map(int,input().split()))
  for i in range(n):
    if v[i]==0:
      v[i]=1000000000000000000000
    else:
      v[i]=1/v[i]
  x/=2
  ans=x/v[0]
  currmax=v[0]
  for i in range(1,n):
    currdist=0
    ans1=0
    fail=0
    if v[i]>currmax:
      currmax=v[i]
      currsin=v[0]/v[i]
      for j in range(i):
        theta=math.asin(currsin)
        currdist+=h[j]*math.tan(theta)
        if currdist>x:
          fail=1
          break
        ans1+=h[j]/(math.cos(theta)*v[j])
        currsin=currsin*v[j+1]/v[j]
      ans1+=(x-currdist)/v[i]
      if fail==0:
        ans=min(ans1,ans)
    print(2*ans)
    
0