結果

問題 No.2009 Drunkers' Contest
ユーザー chineristACchineristAC
提出日時 2022-07-15 21:44:22
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 223 ms / 2,000 ms
コード長 670 bytes
コンパイル時間 166 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 141,484 KB
最終ジャッジ日時 2024-06-27 17:22:45
合計ジャッジ時間 9,865 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 49 ms
55,552 KB
testcase_01 AC 48 ms
55,296 KB
testcase_02 AC 47 ms
55,552 KB
testcase_03 AC 48 ms
55,424 KB
testcase_04 AC 48 ms
55,424 KB
testcase_05 AC 48 ms
55,552 KB
testcase_06 AC 49 ms
55,296 KB
testcase_07 AC 48 ms
55,296 KB
testcase_08 AC 49 ms
55,296 KB
testcase_09 AC 51 ms
55,424 KB
testcase_10 AC 48 ms
55,680 KB
testcase_11 AC 47 ms
55,424 KB
testcase_12 AC 47 ms
55,424 KB
testcase_13 AC 49 ms
55,680 KB
testcase_14 AC 62 ms
65,536 KB
testcase_15 AC 64 ms
66,432 KB
testcase_16 AC 68 ms
66,688 KB
testcase_17 AC 62 ms
66,560 KB
testcase_18 AC 64 ms
67,712 KB
testcase_19 AC 65 ms
68,096 KB
testcase_20 AC 68 ms
68,992 KB
testcase_21 AC 66 ms
67,840 KB
testcase_22 AC 67 ms
68,352 KB
testcase_23 AC 66 ms
68,224 KB
testcase_24 AC 198 ms
136,240 KB
testcase_25 AC 184 ms
136,236 KB
testcase_26 AC 182 ms
136,220 KB
testcase_27 AC 197 ms
136,632 KB
testcase_28 AC 219 ms
136,880 KB
testcase_29 AC 192 ms
136,280 KB
testcase_30 AC 219 ms
136,232 KB
testcase_31 AC 196 ms
136,240 KB
testcase_32 AC 222 ms
136,444 KB
testcase_33 AC 223 ms
136,224 KB
testcase_34 AC 184 ms
134,584 KB
testcase_35 AC 184 ms
134,320 KB
testcase_36 AC 172 ms
134,836 KB
testcase_37 AC 171 ms
134,448 KB
testcase_38 AC 179 ms
134,440 KB
testcase_39 AC 178 ms
134,580 KB
testcase_40 AC 190 ms
134,696 KB
testcase_41 AC 193 ms
134,444 KB
testcase_42 AC 186 ms
134,704 KB
testcase_43 AC 182 ms
134,704 KB
testcase_44 AC 169 ms
138,020 KB
testcase_45 AC 166 ms
138,012 KB
testcase_46 AC 145 ms
131,484 KB
testcase_47 AC 151 ms
121,052 KB
testcase_48 AC 152 ms
121,172 KB
testcase_49 AC 153 ms
117,852 KB
testcase_50 AC 164 ms
124,768 KB
testcase_51 AC 159 ms
117,728 KB
testcase_52 AC 159 ms
114,256 KB
testcase_53 AC 167 ms
140,364 KB
testcase_54 AC 163 ms
137,356 KB
testcase_55 AC 150 ms
130,836 KB
testcase_56 AC 151 ms
131,064 KB
testcase_57 AC 168 ms
141,484 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys,random,bisect
from collections import deque,defaultdict
from heapq import heapify,heappop,heappush
from itertools import permutations
from math import log,gcd

input = lambda :sys.stdin.readline().rstrip()
mi = lambda :map(int,input().split())
li = lambda :list(mi())

N = int(input())
A = li()
B = li()

stack = [(A[0],B[0])]
for i in range(1,N):
    a,b = A[i],B[i]
    while stack:
        pa,pb = stack[-1]
        if pa*b >= a*pb:
            stack.pop()
            a,b = pa+a,pb+b
        else:
            break
    stack.append((a,b))

res = 0
for a,b in stack:
    if a <= b:
        res += a + b
    else:
        res += 2 * (a*b)**.5

print(res)
0