結果

問題 No.2009 Drunkers' Contest
ユーザー tamatotamato
提出日時 2022-07-15 22:12:35
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 176 ms / 2,000 ms
コード長 1,112 bytes
コンパイル時間 274 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 141,960 KB
最終ジャッジ日時 2024-06-27 18:26:00
合計ジャッジ時間 9,202 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
52,224 KB
testcase_01 AC 38 ms
51,968 KB
testcase_02 AC 38 ms
51,968 KB
testcase_03 AC 39 ms
52,096 KB
testcase_04 AC 37 ms
51,840 KB
testcase_05 AC 38 ms
51,840 KB
testcase_06 AC 38 ms
51,840 KB
testcase_07 AC 38 ms
52,224 KB
testcase_08 AC 38 ms
51,968 KB
testcase_09 AC 38 ms
52,224 KB
testcase_10 AC 38 ms
52,224 KB
testcase_11 AC 38 ms
52,224 KB
testcase_12 AC 40 ms
51,968 KB
testcase_13 AC 40 ms
52,096 KB
testcase_14 AC 56 ms
62,976 KB
testcase_15 AC 56 ms
63,616 KB
testcase_16 AC 58 ms
64,640 KB
testcase_17 AC 59 ms
64,896 KB
testcase_18 AC 59 ms
65,152 KB
testcase_19 AC 61 ms
65,664 KB
testcase_20 AC 61 ms
65,920 KB
testcase_21 AC 59 ms
65,536 KB
testcase_22 AC 60 ms
65,792 KB
testcase_23 AC 63 ms
67,200 KB
testcase_24 AC 172 ms
129,916 KB
testcase_25 AC 166 ms
130,048 KB
testcase_26 AC 170 ms
129,796 KB
testcase_27 AC 169 ms
129,924 KB
testcase_28 AC 173 ms
129,924 KB
testcase_29 AC 172 ms
129,800 KB
testcase_30 AC 172 ms
129,796 KB
testcase_31 AC 168 ms
129,804 KB
testcase_32 AC 174 ms
130,180 KB
testcase_33 AC 176 ms
129,916 KB
testcase_34 AC 169 ms
129,024 KB
testcase_35 AC 166 ms
128,892 KB
testcase_36 AC 164 ms
128,648 KB
testcase_37 AC 160 ms
128,512 KB
testcase_38 AC 165 ms
128,892 KB
testcase_39 AC 167 ms
128,884 KB
testcase_40 AC 164 ms
128,900 KB
testcase_41 AC 162 ms
129,020 KB
testcase_42 AC 161 ms
128,512 KB
testcase_43 AC 167 ms
129,032 KB
testcase_44 AC 158 ms
132,884 KB
testcase_45 AC 153 ms
130,452 KB
testcase_46 AC 161 ms
141,960 KB
testcase_47 AC 161 ms
133,600 KB
testcase_48 AC 163 ms
133,220 KB
testcase_49 AC 154 ms
122,460 KB
testcase_50 AC 156 ms
125,664 KB
testcase_51 AC 159 ms
125,668 KB
testcase_52 AC 147 ms
116,704 KB
testcase_53 AC 155 ms
132,200 KB
testcase_54 AC 153 ms
130,800 KB
testcase_55 AC 148 ms
127,204 KB
testcase_56 AC 145 ms
127,248 KB
testcase_57 AC 152 ms
132,012 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

mod = 998244353


def main():
    import sys
    from math import sqrt
    input = sys.stdin.readline

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

    st = [(1.0, 0, 0, 0)]
    for a, b in zip(A, B):
        x_new = sqrt(a / b)
        if x_new >= st[-1][0]:
            st.append((x_new, a, b, a / x_new + b * x_new))
        else:
            sa = a
            sb = b
            while st:
                x_old, aa, bb, c = st.pop()
                sa += aa
                sb += bb
                x_new = sqrt(sa / sb)
                if not st:
                    if x_new <= 1:
                        st.append((1.0, sa, sb, sa + sb))
                    else:
                        st.append((x_new, sa, sb, sa / x_new + sb * x_new))
                    break
                else:
                    if x_new >= st[-1][0]:
                        st.append((x_new, sa, sb, sa / x_new + sb * x_new))
                        break
    ans = 0
    for _, _, _, y in st:
        ans += y
    print(ans)


if __name__ == '__main__':
    main()
0