結果

問題 No.2009 Drunkers' Contest
ユーザー yuusanlondonyuusanlondon
提出日時 2022-07-15 22:04:44
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 394 bytes
コンパイル時間 639 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 135,920 KB
最終ジャッジ日時 2024-06-27 18:04:38
合計ジャッジ時間 8,910 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
52,352 KB
testcase_01 AC 39 ms
51,712 KB
testcase_02 AC 40 ms
51,712 KB
testcase_03 AC 38 ms
51,840 KB
testcase_04 AC 38 ms
52,096 KB
testcase_05 AC 39 ms
52,096 KB
testcase_06 AC 38 ms
52,096 KB
testcase_07 WA -
testcase_08 WA -
testcase_09 AC 39 ms
51,840 KB
testcase_10 WA -
testcase_11 AC 39 ms
51,840 KB
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 AC 49 ms
61,696 KB
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
testcase_24 WA -
testcase_25 AC 166 ms
135,544 KB
testcase_26 WA -
testcase_27 AC 165 ms
134,908 KB
testcase_28 WA -
testcase_29 WA -
testcase_30 WA -
testcase_31 WA -
testcase_32 AC 166 ms
135,292 KB
testcase_33 WA -
testcase_34 WA -
testcase_35 WA -
testcase_36 WA -
testcase_37 WA -
testcase_38 WA -
testcase_39 WA -
testcase_40 WA -
testcase_41 WA -
testcase_42 WA -
testcase_43 WA -
testcase_44 AC 161 ms
135,584 KB
testcase_45 AC 159 ms
135,920 KB
testcase_46 AC 149 ms
130,588 KB
testcase_47 AC 136 ms
108,684 KB
testcase_48 AC 135 ms
108,556 KB
testcase_49 WA -
testcase_50 WA -
testcase_51 WA -
testcase_52 WA -
testcase_53 WA -
testcase_54 WA -
testcase_55 WA -
testcase_56 WA -
testcase_57 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

import math
n=int(input())
a=list(map(int,input().split()))
b=list(map(int,input().split()))
c=[0]*n
asum=0
bsum=0
for i in range(n-1,-1,-1):
  asum+=a[i]
  bsum+=b[i]
  if asum>=bsum:
    c[i]=min(math.sqrt(a[i]/b[i])-1,math.sqrt(asum/bsum)-1)
currmax=0
for i in range(n):
  currmax=max(currmax,c[i])
  c[i]=currmax
ans=0
for i in range(n):
  ans+=a[i]/(1+c[i])
  ans+=b[i]*(1+c[i])
print(ans)
0