結果

問題 No.2009 Drunkers' Contest
ユーザー 👑 KazunKazun
提出日時 2022-07-15 23:59:09
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 273 ms / 2,000 ms
コード長 345 bytes
コンパイル時間 169 ms
コンパイル使用メモリ 82,844 KB
実行使用メモリ 142,132 KB
最終ジャッジ日時 2024-06-27 21:43:56
合計ジャッジ時間 9,078 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,224 KB
testcase_01 AC 38 ms
51,840 KB
testcase_02 AC 38 ms
52,352 KB
testcase_03 AC 38 ms
52,224 KB
testcase_04 AC 38 ms
52,096 KB
testcase_05 AC 37 ms
52,096 KB
testcase_06 AC 38 ms
52,352 KB
testcase_07 AC 38 ms
52,096 KB
testcase_08 AC 38 ms
51,840 KB
testcase_09 AC 37 ms
52,352 KB
testcase_10 AC 38 ms
51,840 KB
testcase_11 AC 38 ms
52,096 KB
testcase_12 AC 37 ms
51,840 KB
testcase_13 AC 38 ms
51,712 KB
testcase_14 AC 52 ms
64,000 KB
testcase_15 AC 51 ms
63,872 KB
testcase_16 AC 52 ms
63,872 KB
testcase_17 AC 61 ms
67,456 KB
testcase_18 AC 51 ms
64,000 KB
testcase_19 AC 60 ms
67,840 KB
testcase_20 AC 52 ms
64,512 KB
testcase_21 AC 61 ms
67,712 KB
testcase_22 AC 51 ms
64,128 KB
testcase_23 AC 60 ms
67,712 KB
testcase_24 AC 154 ms
131,928 KB
testcase_25 AC 160 ms
132,376 KB
testcase_26 AC 152 ms
132,132 KB
testcase_27 AC 159 ms
132,576 KB
testcase_28 AC 153 ms
132,572 KB
testcase_29 AC 159 ms
132,448 KB
testcase_30 AC 158 ms
132,140 KB
testcase_31 AC 155 ms
132,220 KB
testcase_32 AC 159 ms
132,448 KB
testcase_33 AC 159 ms
131,808 KB
testcase_34 AC 149 ms
130,340 KB
testcase_35 AC 149 ms
130,152 KB
testcase_36 AC 153 ms
130,776 KB
testcase_37 AC 152 ms
130,656 KB
testcase_38 AC 148 ms
130,220 KB
testcase_39 AC 151 ms
130,008 KB
testcase_40 AC 153 ms
130,596 KB
testcase_41 AC 151 ms
130,292 KB
testcase_42 AC 147 ms
129,752 KB
testcase_43 AC 153 ms
130,972 KB
testcase_44 AC 151 ms
142,132 KB
testcase_45 AC 143 ms
132,720 KB
testcase_46 AC 144 ms
140,960 KB
testcase_47 AC 129 ms
119,208 KB
testcase_48 AC 127 ms
119,460 KB
testcase_49 AC 273 ms
111,916 KB
testcase_50 AC 139 ms
118,700 KB
testcase_51 AC 135 ms
116,580 KB
testcase_52 AC 132 ms
112,940 KB
testcase_53 AC 141 ms
133,812 KB
testcase_54 AC 137 ms
131,656 KB
testcase_55 AC 138 ms
127,880 KB
testcase_56 AC 133 ms
127,340 KB
testcase_57 AC 143 ms
134,360 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from math import sqrt

N=int(input())
A=list(map(int,input().split()))
B=list(map(int,input().split()))

S=[]
for i in range(N):
    a=A[i]; b=B[i]
    while bool(S) and S[-1][0]/S[-1][1]>a/b:
        Sa,Sb=S.pop()
        a+=Sa; b+=Sb
    S.append((a,b))

T=0
for a,b in S:
    if a>b:
        T+=2*sqrt(a*b)
    else:
        T+=a+b

print(T)
0