結果

問題 No.2694 The Early Bird Catches The Worm
ユーザー hitonanodehitonanode
提出日時 2024-04-05 00:31:13
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 152 ms / 2,000 ms
コード長 545 bytes
コンパイル時間 320 ms
コンパイル使用メモリ 82,324 KB
実行使用メモリ 131,888 KB
最終ジャッジ日時 2024-10-01 00:42:24
合計ジャッジ時間 9,716 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
53,616 KB
testcase_01 AC 37 ms
52,692 KB
testcase_02 AC 35 ms
52,472 KB
testcase_03 AC 35 ms
52,876 KB
testcase_04 AC 36 ms
52,484 KB
testcase_05 AC 34 ms
52,664 KB
testcase_06 AC 38 ms
59,164 KB
testcase_07 AC 35 ms
53,244 KB
testcase_08 AC 40 ms
59,916 KB
testcase_09 AC 36 ms
53,040 KB
testcase_10 AC 36 ms
53,284 KB
testcase_11 AC 34 ms
52,688 KB
testcase_12 AC 36 ms
53,008 KB
testcase_13 AC 36 ms
52,460 KB
testcase_14 AC 37 ms
53,028 KB
testcase_15 AC 37 ms
54,144 KB
testcase_16 AC 37 ms
54,048 KB
testcase_17 AC 37 ms
53,488 KB
testcase_18 AC 37 ms
53,756 KB
testcase_19 AC 38 ms
52,636 KB
testcase_20 AC 38 ms
53,860 KB
testcase_21 AC 35 ms
53,308 KB
testcase_22 AC 37 ms
52,968 KB
testcase_23 AC 37 ms
52,760 KB
testcase_24 AC 71 ms
89,724 KB
testcase_25 AC 66 ms
85,616 KB
testcase_26 AC 74 ms
92,324 KB
testcase_27 AC 86 ms
99,016 KB
testcase_28 AC 90 ms
98,292 KB
testcase_29 AC 61 ms
78,564 KB
testcase_30 AC 118 ms
102,852 KB
testcase_31 AC 91 ms
99,304 KB
testcase_32 AC 118 ms
103,892 KB
testcase_33 AC 117 ms
103,464 KB
testcase_34 AC 47 ms
65,100 KB
testcase_35 AC 86 ms
97,424 KB
testcase_36 AC 98 ms
98,996 KB
testcase_37 AC 129 ms
107,524 KB
testcase_38 AC 102 ms
98,088 KB
testcase_39 AC 58 ms
76,880 KB
testcase_40 AC 90 ms
98,872 KB
testcase_41 AC 60 ms
81,996 KB
testcase_42 AC 44 ms
62,976 KB
testcase_43 AC 53 ms
70,672 KB
testcase_44 AC 129 ms
106,488 KB
testcase_45 AC 127 ms
106,388 KB
testcase_46 AC 69 ms
87,388 KB
testcase_47 AC 76 ms
89,792 KB
testcase_48 AC 93 ms
98,040 KB
testcase_49 AC 125 ms
113,944 KB
testcase_50 AC 124 ms
113,800 KB
testcase_51 AC 125 ms
113,588 KB
testcase_52 AC 124 ms
113,612 KB
testcase_53 AC 123 ms
113,668 KB
testcase_54 AC 146 ms
131,784 KB
testcase_55 AC 147 ms
131,888 KB
testcase_56 AC 152 ms
131,160 KB
testcase_57 AC 148 ms
131,280 KB
testcase_58 AC 140 ms
131,268 KB
testcase_59 AC 144 ms
131,660 KB
testcase_60 AC 138 ms
131,248 KB
testcase_61 AC 149 ms
131,388 KB
testcase_62 AC 140 ms
131,528 KB
testcase_63 AC 145 ms
131,252 KB
testcase_64 AC 143 ms
131,272 KB
testcase_65 AC 146 ms
131,272 KB
testcase_66 AC 140 ms
131,280 KB
testcase_67 AC 140 ms
131,268 KB
testcase_68 AC 141 ms
131,796 KB
testcase_69 AC 129 ms
127,040 KB
testcase_70 AC 124 ms
127,040 KB
testcase_71 AC 128 ms
126,788 KB
testcase_72 AC 132 ms
127,048 KB
testcase_73 AC 128 ms
127,184 KB
testcase_74 AC 86 ms
102,524 KB
testcase_75 AC 132 ms
127,176 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

ret = 0

suma = 0
sumb0 = 0
sumb1 = 0

l = 0

for r in range(N):
    # [l, r]
    suma += A[r]

    sumb0 += B[r]
    sumb1 += B[r] * r

    while True:
        # B[l] * 1 + B[l + 1] * 2 + ... + B[r] * (r - l + 1)
        s = sumb1 - sumb0 * (l - 1)
        if s <= H:
            break
        else:
            suma -= A[l]
            sumb0 -= B[l]
            sumb1 -= B[l] * l
            l += 1

    ret = max(ret, suma)

print(ret)
0