結果

問題 No.2009 Drunkers' Contest
ユーザー mkawa2mkawa2
提出日時 2022-07-16 09:56:29
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 190 ms / 2,000 ms
コード長 1,049 bytes
コンパイル時間 403 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 140,452 KB
最終ジャッジ日時 2024-06-28 08:28:30
合計ジャッジ時間 11,767 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,352 KB
testcase_01 AC 37 ms
52,736 KB
testcase_02 AC 37 ms
52,608 KB
testcase_03 AC 38 ms
52,352 KB
testcase_04 AC 37 ms
52,608 KB
testcase_05 AC 37 ms
52,608 KB
testcase_06 AC 37 ms
52,352 KB
testcase_07 AC 37 ms
52,608 KB
testcase_08 AC 39 ms
52,608 KB
testcase_09 AC 38 ms
52,480 KB
testcase_10 AC 38 ms
52,736 KB
testcase_11 AC 38 ms
52,736 KB
testcase_12 AC 37 ms
52,992 KB
testcase_13 AC 37 ms
52,608 KB
testcase_14 AC 54 ms
65,408 KB
testcase_15 AC 55 ms
66,176 KB
testcase_16 AC 54 ms
65,408 KB
testcase_17 AC 53 ms
65,664 KB
testcase_18 AC 53 ms
65,536 KB
testcase_19 AC 54 ms
65,792 KB
testcase_20 AC 54 ms
66,176 KB
testcase_21 AC 52 ms
66,048 KB
testcase_22 AC 57 ms
67,584 KB
testcase_23 AC 56 ms
66,560 KB
testcase_24 AC 190 ms
133,460 KB
testcase_25 AC 179 ms
133,272 KB
testcase_26 AC 177 ms
133,536 KB
testcase_27 AC 180 ms
133,268 KB
testcase_28 AC 181 ms
133,408 KB
testcase_29 AC 189 ms
133,132 KB
testcase_30 AC 172 ms
133,532 KB
testcase_31 AC 178 ms
133,532 KB
testcase_32 AC 174 ms
133,276 KB
testcase_33 AC 180 ms
133,408 KB
testcase_34 AC 177 ms
131,996 KB
testcase_35 AC 179 ms
131,976 KB
testcase_36 AC 179 ms
132,072 KB
testcase_37 AC 182 ms
132,236 KB
testcase_38 AC 178 ms
131,972 KB
testcase_39 AC 182 ms
132,076 KB
testcase_40 AC 177 ms
132,256 KB
testcase_41 AC 175 ms
132,176 KB
testcase_42 AC 178 ms
131,848 KB
testcase_43 AC 173 ms
131,996 KB
testcase_44 AC 151 ms
133,876 KB
testcase_45 AC 155 ms
133,636 KB
testcase_46 AC 155 ms
130,048 KB
testcase_47 AC 168 ms
140,076 KB
testcase_48 AC 167 ms
140,336 KB
testcase_49 AC 175 ms
139,940 KB
testcase_50 AC 176 ms
140,452 KB
testcase_51 AC 168 ms
130,476 KB
testcase_52 AC 170 ms
129,968 KB
testcase_53 AC 168 ms
136,260 KB
testcase_54 AC 170 ms
132,440 KB
testcase_55 AC 164 ms
130,896 KB
testcase_56 AC 162 ms
130,848 KB
testcase_57 AC 171 ms
140,152 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys

sys.setrecursionlimit(200005)
int1 = lambda x: int(x)-1
pDB = lambda *x: print(*x, end="\n", file=sys.stderr)
p2D = lambda x: print(*x, sep="\n", end="\n\n", file=sys.stderr)
def II(): return int(sys.stdin.readline())
def LI(): return list(map(int, sys.stdin.readline().split()))
def LLI(rows_number): return [LI() for _ in range(rows_number)]
def LI1(): return list(map(int1, sys.stdin.readline().split()))
def LLI1(rows_number): return [LI1() for _ in range(rows_number)]
def SI(): return sys.stdin.readline().rstrip()
# dij = [(0, 1), (-1, 0), (0, -1), (1, 0)]
dij = [(0, 1), (-1, 0), (0, -1), (1, 0), (1, 1), (1, -1), (-1, 1), (-1, -1)]
inf = (1 << 63)-1
# inf = (1 << 31)-1
md = 10**9+7
# md = 998244353

n = II()
aa = LI()
bb = LI()

st = []
for a, b in zip(aa[::-1], bb[::-1]):
    cur = max(0, (a/b)**0.5-1)
    while st and cur >= st[-1][-1]:
        pa, pb, pc = st.pop()
        a, b = a+pa, b+pb
        cur = max(0, (a/b)**0.5-1)
    st.append((a, b, cur))

ans = 0
for a, b, c in st:
    ans += a/(1+c)+b*(1+c)

print(ans)
0