結果

問題 No.2009 Drunkers' Contest
ユーザー tassei903tassei903
提出日時 2022-07-16 02:03:36
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 669 bytes
コンパイル時間 163 ms
コンパイル使用メモリ 82,256 KB
実行使用メモリ 132,304 KB
最終ジャッジ日時 2024-06-28 00:17:35
合計ジャッジ時間 8,009 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
51,712 KB
testcase_01 AC 36 ms
52,480 KB
testcase_02 AC 35 ms
52,224 KB
testcase_03 AC 35 ms
51,584 KB
testcase_04 AC 35 ms
52,096 KB
testcase_05 AC 35 ms
52,352 KB
testcase_06 AC 35 ms
52,352 KB
testcase_07 AC 37 ms
52,224 KB
testcase_08 WA -
testcase_09 AC 36 ms
51,712 KB
testcase_10 WA -
testcase_11 AC 42 ms
52,352 KB
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 AC 42 ms
61,312 KB
testcase_20 WA -
testcase_21 AC 43 ms
60,928 KB
testcase_22 WA -
testcase_23 WA -
testcase_24 WA -
testcase_25 WA -
testcase_26 AC 132 ms
131,136 KB
testcase_27 WA -
testcase_28 WA -
testcase_29 AC 135 ms
131,416 KB
testcase_30 WA -
testcase_31 WA -
testcase_32 WA -
testcase_33 WA -
testcase_34 WA -
testcase_35 AC 129 ms
129,652 KB
testcase_36 WA -
testcase_37 WA -
testcase_38 WA -
testcase_39 WA -
testcase_40 WA -
testcase_41 AC 128 ms
129,536 KB
testcase_42 WA -
testcase_43 WA -
testcase_44 AC 135 ms
131,584 KB
testcase_45 AC 134 ms
132,088 KB
testcase_46 AC 124 ms
126,588 KB
testcase_47 AC 128 ms
107,648 KB
testcase_48 AC 123 ms
107,648 KB
testcase_49 WA -
testcase_50 WA -
testcase_51 WA -
testcase_52 WA -
testcase_53 WA -
testcase_54 WA -
testcase_55 WA -
testcase_56 WA -
testcase_57 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = lambda :sys.stdin.readline()[:-1]
ni = lambda :int(input())
na = lambda :list(map(int,input().split()))
yes = lambda :print("yes");Yes = lambda :print("Yes");YES = lambda : print("YES")
no = lambda :print("no");No = lambda :print("No");NO = lambda : print("NO")
#####################################################################
n = ni()
a = na()
b = na()
ans = 0
i = 0
while i < n:
    r = i
    A = 0
    B = 0
    while True:
        A += a[r]
        B += b[r]
        r += 1
        if r == n:
            break
        if a[r] * b[i] > a[i] * b[r]:
            break
    x1 = max(A / B, 1)**0.5
    ans += A/x1 + B * x1
    i = r
print(ans)
0