結果

問題 No.2694 The Early Bird Catches The Worm
ユーザー noriocnorioc
提出日時 2024-03-22 23:16:19
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 701 bytes
コンパイル時間 417 ms
コンパイル使用メモリ 82,040 KB
実行使用メモリ 131,784 KB
最終ジャッジ日時 2024-09-30 12:30:56
合計ジャッジ時間 10,483 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 32 ms
52,452 KB
testcase_01 AC 33 ms
52,768 KB
testcase_02 AC 33 ms
52,284 KB
testcase_03 AC 32 ms
53,068 KB
testcase_04 AC 32 ms
51,940 KB
testcase_05 AC 31 ms
52,820 KB
testcase_06 WA -
testcase_07 AC 36 ms
59,740 KB
testcase_08 AC 38 ms
60,424 KB
testcase_09 AC 38 ms
59,560 KB
testcase_10 WA -
testcase_11 AC 39 ms
59,196 KB
testcase_12 AC 33 ms
53,968 KB
testcase_13 AC 35 ms
53,240 KB
testcase_14 AC 36 ms
58,868 KB
testcase_15 AC 38 ms
58,364 KB
testcase_16 AC 37 ms
58,832 KB
testcase_17 AC 38 ms
59,052 KB
testcase_18 AC 36 ms
59,964 KB
testcase_19 AC 34 ms
54,128 KB
testcase_20 AC 37 ms
60,100 KB
testcase_21 AC 33 ms
53,568 KB
testcase_22 WA -
testcase_23 AC 37 ms
58,620 KB
testcase_24 AC 75 ms
90,016 KB
testcase_25 AC 72 ms
87,736 KB
testcase_26 AC 84 ms
92,256 KB
testcase_27 AC 95 ms
98,932 KB
testcase_28 AC 110 ms
98,396 KB
testcase_29 AC 59 ms
78,848 KB
testcase_30 WA -
testcase_31 AC 92 ms
98,964 KB
testcase_32 AC 124 ms
103,500 KB
testcase_33 AC 120 ms
103,084 KB
testcase_34 AC 45 ms
65,632 KB
testcase_35 WA -
testcase_36 AC 101 ms
99,056 KB
testcase_37 AC 150 ms
107,280 KB
testcase_38 AC 110 ms
98,336 KB
testcase_39 AC 57 ms
76,044 KB
testcase_40 AC 92 ms
99,232 KB
testcase_41 WA -
testcase_42 AC 43 ms
64,856 KB
testcase_43 AC 47 ms
69,448 KB
testcase_44 AC 132 ms
106,632 KB
testcase_45 AC 130 ms
106,612 KB
testcase_46 AC 74 ms
89,820 KB
testcase_47 AC 73 ms
89,964 KB
testcase_48 AC 96 ms
98,192 KB
testcase_49 WA -
testcase_50 WA -
testcase_51 WA -
testcase_52 WA -
testcase_53 WA -
testcase_54 AC 152 ms
131,124 KB
testcase_55 AC 152 ms
131,316 KB
testcase_56 AC 152 ms
131,780 KB
testcase_57 AC 158 ms
131,124 KB
testcase_58 AC 150 ms
131,260 KB
testcase_59 AC 153 ms
131,272 KB
testcase_60 AC 153 ms
131,784 KB
testcase_61 AC 153 ms
131,004 KB
testcase_62 AC 155 ms
131,516 KB
testcase_63 AC 152 ms
131,268 KB
testcase_64 AC 149 ms
131,280 KB
testcase_65 AC 150 ms
131,644 KB
testcase_66 AC 150 ms
131,540 KB
testcase_67 AC 148 ms
131,432 KB
testcase_68 AC 147 ms
131,016 KB
testcase_69 AC 166 ms
127,188 KB
testcase_70 AC 167 ms
127,292 KB
testcase_71 AC 181 ms
127,052 KB
testcase_72 AC 170 ms
126,924 KB
testcase_73 AC 163 ms
127,048 KB
testcase_74 AC 98 ms
102,876 KB
testcase_75 AC 165 ms
126,908 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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


def calc(m) -> int:
    a = 0
    b = 0
    s = 0
    for i in range(m):
        s += B[i] * (i+1)
        a += A[i]
        b += B[i]

    res = 0
    if s <= H:
        res = a
    for i in range(m, N):
        s -= b
        a -= A[i-m]
        b -= B[i-m]
        s += B[i] * m
        a += A[i]
        b += B[i]
        if s <= H:
            res = max(res, a)
    return res


ans = 0
lo = 1
hi = N
while lo <= hi:
    m = (lo + hi) // 2
    res = calc(m)
    #print(f'{res=} {m=}')
    if res > 0:
        ans = max(ans, res)
        lo = m + 1
    else:
        hi = m - 1

print(ans)
0