結果

問題 No.2694 The Early Bird Catches The Worm
ユーザー hato336hato336
提出日時 2024-03-22 21:38:42
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 250 ms / 2,000 ms
コード長 790 bytes
コンパイル時間 382 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 145,024 KB
最終ジャッジ日時 2024-09-30 11:07:35
合計ジャッジ時間 18,108 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 139 ms
85,632 KB
testcase_01 AC 140 ms
85,504 KB
testcase_02 AC 140 ms
85,632 KB
testcase_03 AC 139 ms
85,504 KB
testcase_04 AC 139 ms
85,632 KB
testcase_05 AC 139 ms
85,504 KB
testcase_06 AC 152 ms
89,472 KB
testcase_07 AC 139 ms
85,504 KB
testcase_08 AC 152 ms
89,600 KB
testcase_09 AC 151 ms
88,832 KB
testcase_10 AC 141 ms
85,632 KB
testcase_11 AC 141 ms
85,504 KB
testcase_12 AC 142 ms
85,504 KB
testcase_13 AC 141 ms
85,632 KB
testcase_14 AC 150 ms
88,960 KB
testcase_15 AC 140 ms
85,504 KB
testcase_16 AC 150 ms
88,960 KB
testcase_17 AC 150 ms
88,832 KB
testcase_18 AC 151 ms
88,832 KB
testcase_19 AC 139 ms
85,504 KB
testcase_20 AC 150 ms
88,832 KB
testcase_21 AC 139 ms
85,504 KB
testcase_22 AC 140 ms
85,504 KB
testcase_23 AC 152 ms
88,960 KB
testcase_24 AC 186 ms
102,912 KB
testcase_25 AC 186 ms
100,352 KB
testcase_26 AC 190 ms
105,216 KB
testcase_27 AC 203 ms
113,408 KB
testcase_28 AC 204 ms
116,864 KB
testcase_29 AC 166 ms
94,336 KB
testcase_30 AC 231 ms
124,928 KB
testcase_31 AC 203 ms
113,664 KB
testcase_32 AC 237 ms
122,112 KB
testcase_33 AC 232 ms
124,032 KB
testcase_34 AC 164 ms
90,112 KB
testcase_35 AC 194 ms
110,592 KB
testcase_36 AC 206 ms
120,584 KB
testcase_37 AC 233 ms
121,472 KB
testcase_38 AC 215 ms
125,184 KB
testcase_39 AC 166 ms
93,184 KB
testcase_40 AC 199 ms
113,536 KB
testcase_41 AC 181 ms
97,280 KB
testcase_42 AC 156 ms
89,856 KB
testcase_43 AC 166 ms
90,112 KB
testcase_44 AC 233 ms
121,216 KB
testcase_45 AC 222 ms
121,472 KB
testcase_46 AC 187 ms
102,400 KB
testcase_47 AC 175 ms
103,040 KB
testcase_48 AC 197 ms
116,864 KB
testcase_49 AC 241 ms
145,024 KB
testcase_50 AC 241 ms
144,768 KB
testcase_51 AC 242 ms
144,896 KB
testcase_52 AC 237 ms
144,768 KB
testcase_53 AC 235 ms
144,828 KB
testcase_54 AC 240 ms
122,880 KB
testcase_55 AC 244 ms
122,880 KB
testcase_56 AC 245 ms
122,880 KB
testcase_57 AC 249 ms
123,008 KB
testcase_58 AC 245 ms
122,880 KB
testcase_59 AC 250 ms
122,880 KB
testcase_60 AC 248 ms
123,008 KB
testcase_61 AC 244 ms
122,880 KB
testcase_62 AC 246 ms
123,008 KB
testcase_63 AC 241 ms
123,008 KB
testcase_64 AC 238 ms
122,880 KB
testcase_65 AC 242 ms
123,136 KB
testcase_66 AC 245 ms
123,008 KB
testcase_67 AC 241 ms
123,008 KB
testcase_68 AC 239 ms
122,880 KB
testcase_69 AC 231 ms
131,840 KB
testcase_70 AC 226 ms
131,968 KB
testcase_71 AC 228 ms
131,840 KB
testcase_72 AC 229 ms
131,968 KB
testcase_73 AC 227 ms
131,968 KB
testcase_74 AC 186 ms
115,584 KB
testcase_75 AC 227 ms
131,840 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import collections,sys,math,functools,operator,itertools,bisect,heapq,decimal,string,time,random
#sys.setrecursionlimit(10**9)
#sys.set_int_max_str_digits(0)
input = sys.stdin.readline
#n = int(input())
#alist = list(map(int,input().split()))
#alist = []
#s = input()
n,h = map(int,input().split())
a = list(map(int,input().split()))
b = list(map(int,input().split()))
ans = 0
#https://github.com/tsutaj/pastbook-2-source-code/blob/main/python/chapter3/3-2-1.py
l, r = 0, 0
fat = 0
temp = 0
res = 0
for l in range(n):
    while r < n and fat + b[r] * (r-l+1) <= h:
        fat += b[r] * (r-l+1)
        temp += b[r]
        res += a[r]
        r += 1
    ans = max(ans, res)
    if r - l >= 1:
        fat -= temp
        temp -= b[l]
        res -= a[l]
    else:
        r += 1
print(ans)
0