結果

問題 No.2009 Drunkers' Contest
ユーザー convexineqconvexineq
提出日時 2024-03-19 03:05:14
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 570 bytes
コンパイル時間 159 ms
コンパイル使用メモリ 82,344 KB
実行使用メモリ 158,196 KB
最終ジャッジ日時 2024-09-30 05:13:25
合計ジャッジ時間 9,995 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 32 ms
52,608 KB
testcase_02 AC 33 ms
52,096 KB
testcase_03 WA -
testcase_04 WA -
testcase_05 AC 32 ms
52,480 KB
testcase_06 AC 31 ms
52,736 KB
testcase_07 AC 33 ms
52,480 KB
testcase_08 WA -
testcase_09 WA -
testcase_10 AC 33 ms
52,864 KB
testcase_11 AC 36 ms
52,224 KB
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 -
testcase_22 WA -
testcase_23 WA -
testcase_24 WA -
testcase_25 WA -
testcase_26 WA -
testcase_27 WA -
testcase_28 WA -
testcase_29 WA -
testcase_30 WA -
testcase_31 WA -
testcase_32 WA -
testcase_33 WA -
testcase_34 AC 181 ms
142,280 KB
testcase_35 AC 178 ms
141,912 KB
testcase_36 AC 208 ms
143,180 KB
testcase_37 AC 178 ms
142,296 KB
testcase_38 AC 179 ms
142,032 KB
testcase_39 AC 189 ms
142,808 KB
testcase_40 AC 193 ms
142,700 KB
testcase_41 AC 195 ms
143,188 KB
testcase_42 AC 193 ms
146,004 KB
testcase_43 AC 189 ms
146,516 KB
testcase_44 WA -
testcase_45 AC 159 ms
141,464 KB
testcase_46 AC 165 ms
155,904 KB
testcase_47 AC 161 ms
135,300 KB
testcase_48 AC 162 ms
135,556 KB
testcase_49 AC 261 ms
129,660 KB
testcase_50 AC 166 ms
130,048 KB
testcase_51 AC 167 ms
135,300 KB
testcase_52 AC 183 ms
130,824 KB
testcase_53 AC 188 ms
156,192 KB
testcase_54 AC 175 ms
155,964 KB
testcase_55 AC 174 ms
158,196 KB
testcase_56 AC 170 ms
158,176 KB
testcase_57 AC 178 ms
158,156 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
readline = sys.stdin.readline
n = int(readline())
*A, = map(int,readline().split())
*B, = map(int,readline().split())

q = []
ans = 0.0
for a,b in zip(A,B):
    while q and a <= b:
        x,y = q.pop()
        a += x
        b += y
    if a <= b:
        ans += a+b
    else:
        q.append((a,b))

qq = []
for a,b in q:
    while qq:
        x,y = qq[-1]
        if b*x >= a*y:
            qq.pop()
            a += x
            b += y
        else:
            break
    qq.append((a,b))

ans = 0.0
for x,y in qq:
    ans += 2*(1.0*x*y)**0.5

print(ans)
0