結果

問題 No.2010 Magical Floor
ユーザー yuusanlondonyuusanlondon
提出日時 2022-07-15 23:17:08
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 737 bytes
コンパイル時間 294 ms
コンパイル使用メモリ 87,176 KB
実行使用メモリ 78,716 KB
最終ジャッジ日時 2023-09-10 05:01:02
合計ジャッジ時間 3,816 ms
ジャッジサーバーID
(参考情報)
judge11 / judge13
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 74 ms
71,932 KB
testcase_01 WA -
testcase_02 AC 76 ms
71,860 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]=100000000000000000000000000000000000
    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):
        cos=math.sqrt(1-currsin*currsin)
        currdist+=h[j]*currsin/cos
        if currdist>x:
          fail=1
          break
        ans1+=h[j]/(cos*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