結果

問題 No.2694 The Early Bird Catches The Worm
ユーザー Nikkuniku029Nikkuniku029
提出日時 2024-03-22 22:21:12
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 169 ms / 2,000 ms
コード長 517 bytes
コンパイル時間 268 ms
コンパイル使用メモリ 82,012 KB
実行使用メモリ 145,804 KB
最終ジャッジ日時 2024-09-30 11:52:35
合計ジャッジ時間 10,468 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
52,352 KB
testcase_01 AC 35 ms
52,352 KB
testcase_02 AC 35 ms
52,224 KB
testcase_03 AC 35 ms
52,608 KB
testcase_04 AC 35 ms
52,096 KB
testcase_05 AC 34 ms
52,096 KB
testcase_06 AC 39 ms
59,132 KB
testcase_07 AC 35 ms
52,480 KB
testcase_08 AC 39 ms
58,624 KB
testcase_09 AC 35 ms
52,992 KB
testcase_10 AC 35 ms
52,352 KB
testcase_11 AC 36 ms
52,480 KB
testcase_12 AC 35 ms
52,224 KB
testcase_13 AC 34 ms
52,736 KB
testcase_14 AC 35 ms
52,736 KB
testcase_15 AC 34 ms
52,864 KB
testcase_16 AC 36 ms
52,608 KB
testcase_17 AC 36 ms
52,864 KB
testcase_18 AC 37 ms
53,376 KB
testcase_19 AC 36 ms
52,224 KB
testcase_20 AC 36 ms
52,736 KB
testcase_21 AC 36 ms
52,224 KB
testcase_22 AC 36 ms
52,352 KB
testcase_23 AC 36 ms
52,864 KB
testcase_24 AC 87 ms
92,800 KB
testcase_25 AC 83 ms
90,112 KB
testcase_26 AC 90 ms
95,232 KB
testcase_27 AC 101 ms
99,200 KB
testcase_28 AC 106 ms
98,304 KB
testcase_29 AC 60 ms
78,464 KB
testcase_30 AC 121 ms
113,592 KB
testcase_31 AC 93 ms
99,372 KB
testcase_32 AC 132 ms
113,984 KB
testcase_33 AC 129 ms
113,892 KB
testcase_34 AC 56 ms
68,584 KB
testcase_35 AC 96 ms
97,536 KB
testcase_36 AC 108 ms
99,200 KB
testcase_37 AC 139 ms
119,748 KB
testcase_38 AC 112 ms
102,544 KB
testcase_39 AC 59 ms
76,416 KB
testcase_40 AC 101 ms
98,920 KB
testcase_41 AC 79 ms
86,436 KB
testcase_42 AC 46 ms
61,696 KB
testcase_43 AC 58 ms
72,576 KB
testcase_44 AC 144 ms
118,520 KB
testcase_45 AC 131 ms
118,592 KB
testcase_46 AC 88 ms
92,388 KB
testcase_47 AC 77 ms
92,800 KB
testcase_48 AC 101 ms
98,304 KB
testcase_49 AC 143 ms
116,696 KB
testcase_50 AC 141 ms
116,056 KB
testcase_51 AC 141 ms
116,952 KB
testcase_52 AC 143 ms
116,488 KB
testcase_53 AC 148 ms
116,800 KB
testcase_54 AC 161 ms
145,804 KB
testcase_55 AC 156 ms
144,904 KB
testcase_56 AC 167 ms
145,292 KB
testcase_57 AC 169 ms
145,088 KB
testcase_58 AC 158 ms
145,040 KB
testcase_59 AC 167 ms
145,296 KB
testcase_60 AC 160 ms
145,264 KB
testcase_61 AC 152 ms
145,172 KB
testcase_62 AC 158 ms
144,956 KB
testcase_63 AC 161 ms
145,168 KB
testcase_64 AC 152 ms
145,152 KB
testcase_65 AC 161 ms
145,548 KB
testcase_66 AC 158 ms
144,792 KB
testcase_67 AC 162 ms
145,160 KB
testcase_68 AC 146 ms
144,908 KB
testcase_69 AC 147 ms
140,616 KB
testcase_70 AC 144 ms
140,744 KB
testcase_71 AC 143 ms
140,280 KB
testcase_72 AC 143 ms
140,728 KB
testcase_73 AC 143 ms
140,820 KB
testcase_74 AC 94 ms
102,428 KB
testcase_75 AC 145 ms
140,408 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N, H = map(int, input().split())
A = list(map(int, input().split()))
B = list(map(int, input().split()))
from itertools import accumulate

cum = list(accumulate(B, initial=0))
ans = 0
tired = 0
day = 0
r = 0
tmp = 0
for l in range(N):
    while r < N and tired + (day + 1) * B[r] <= H:
        tmp += A[r]
        tired += (day + 1) * B[r]
        day += 1
        r += 1
    ans = max(ans, tmp)
    if l == r:
        r += 1
    else:
        tmp -= A[l]
        tired -= cum[r] - cum[l]
        day -= 1
print(ans)
0