結果

問題 No.2009 Drunkers' Contest
ユーザー Kiri8128Kiri8128
提出日時 2020-11-19 02:21:17
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 194 ms / 2,000 ms
コード長 594 bytes
コンパイル時間 273 ms
コンパイル使用メモリ 81,664 KB
実行使用メモリ 146,472 KB
最終ジャッジ日時 2024-06-27 15:59:43
合計ジャッジ時間 9,021 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
51,840 KB
testcase_01 AC 40 ms
51,840 KB
testcase_02 AC 38 ms
51,840 KB
testcase_03 AC 39 ms
51,968 KB
testcase_04 AC 38 ms
52,096 KB
testcase_05 AC 38 ms
52,096 KB
testcase_06 AC 38 ms
52,096 KB
testcase_07 AC 38 ms
51,840 KB
testcase_08 AC 38 ms
51,840 KB
testcase_09 AC 39 ms
51,840 KB
testcase_10 AC 40 ms
51,840 KB
testcase_11 AC 38 ms
52,096 KB
testcase_12 AC 38 ms
51,840 KB
testcase_13 AC 39 ms
51,712 KB
testcase_14 AC 54 ms
63,616 KB
testcase_15 AC 54 ms
63,744 KB
testcase_16 AC 55 ms
64,512 KB
testcase_17 AC 54 ms
65,152 KB
testcase_18 AC 54 ms
65,152 KB
testcase_19 AC 51 ms
63,744 KB
testcase_20 AC 57 ms
66,432 KB
testcase_21 AC 51 ms
64,000 KB
testcase_22 AC 58 ms
67,712 KB
testcase_23 AC 54 ms
65,792 KB
testcase_24 AC 173 ms
125,752 KB
testcase_25 AC 177 ms
126,136 KB
testcase_26 AC 185 ms
125,876 KB
testcase_27 AC 178 ms
126,132 KB
testcase_28 AC 186 ms
126,004 KB
testcase_29 AC 182 ms
126,084 KB
testcase_30 AC 178 ms
125,876 KB
testcase_31 AC 194 ms
126,000 KB
testcase_32 AC 182 ms
126,128 KB
testcase_33 AC 182 ms
125,628 KB
testcase_34 AC 163 ms
124,764 KB
testcase_35 AC 162 ms
124,860 KB
testcase_36 AC 165 ms
124,460 KB
testcase_37 AC 156 ms
124,724 KB
testcase_38 AC 160 ms
124,340 KB
testcase_39 AC 164 ms
124,592 KB
testcase_40 AC 167 ms
124,800 KB
testcase_41 AC 154 ms
124,668 KB
testcase_42 AC 156 ms
124,348 KB
testcase_43 AC 157 ms
124,984 KB
testcase_44 AC 162 ms
140,324 KB
testcase_45 AC 177 ms
141,480 KB
testcase_46 AC 153 ms
146,472 KB
testcase_47 AC 141 ms
135,296 KB
testcase_48 AC 142 ms
135,300 KB
testcase_49 AC 142 ms
134,924 KB
testcase_50 AC 144 ms
133,120 KB
testcase_51 AC 139 ms
131,972 KB
testcase_52 AC 139 ms
129,024 KB
testcase_53 AC 142 ms
128,228 KB
testcase_54 AC 144 ms
124,804 KB
testcase_55 AC 136 ms
121,256 KB
testcase_56 AC 134 ms
121,252 KB
testcase_57 AC 144 ms
129,208 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from math import sqrt

def calc(N, A, B):
    AA = [0]
    BB = [0]
    for a, b in zip(A, B):
        AA.append(AA[-1] + a)
        BB.append(BB[-1] + b)
    L = [(0, 0)]
    for i in range(N)[::-1]:
        sa, sb = A[i], B[i]
        while sa * L[-1][1] - sb * L[-1][0] > 0:
            sa += L[-1][0]
            sb += L[-1][1]
            L.pop()
        L.append((sa, sb))
    ans = 0
    for a, b in L[1:]:
        ans += sqrt(a * b) * 2 if a > b else a + b
    return ans

N = int(input())
A = [int(a) for a in input().split()]
B = [int(a) for a in input().split()]
print(calc(N, A, B))
0