結果

問題 No.2694 The Early Bird Catches The Worm
ユーザー ypwwypww
提出日時 2024-02-15 22:26:34
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 569 ms / 2,000 ms
コード長 454 bytes
コンパイル時間 198 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 48,884 KB
最終ジャッジ日時 2024-09-28 22:32:44
合計ジャッジ時間 23,996 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 26 ms
10,752 KB
testcase_01 AC 25 ms
10,752 KB
testcase_02 AC 25 ms
10,752 KB
testcase_03 AC 26 ms
10,880 KB
testcase_04 AC 27 ms
10,880 KB
testcase_05 AC 26 ms
10,752 KB
testcase_06 AC 28 ms
10,880 KB
testcase_07 AC 26 ms
10,752 KB
testcase_08 AC 26 ms
11,008 KB
testcase_09 AC 26 ms
10,752 KB
testcase_10 AC 26 ms
10,752 KB
testcase_11 AC 26 ms
10,880 KB
testcase_12 AC 26 ms
10,752 KB
testcase_13 AC 26 ms
10,752 KB
testcase_14 AC 27 ms
11,008 KB
testcase_15 AC 29 ms
10,880 KB
testcase_16 AC 27 ms
10,880 KB
testcase_17 AC 25 ms
10,880 KB
testcase_18 AC 26 ms
11,008 KB
testcase_19 AC 27 ms
10,880 KB
testcase_20 AC 27 ms
10,880 KB
testcase_21 AC 25 ms
10,752 KB
testcase_22 AC 26 ms
10,752 KB
testcase_23 AC 26 ms
10,880 KB
testcase_24 AC 166 ms
20,840 KB
testcase_25 AC 145 ms
19,744 KB
testcase_26 AC 180 ms
22,368 KB
testcase_27 AC 248 ms
27,004 KB
testcase_28 AC 261 ms
29,144 KB
testcase_29 AC 104 ms
16,768 KB
testcase_30 AC 426 ms
40,300 KB
testcase_31 AC 246 ms
27,244 KB
testcase_32 AC 441 ms
41,748 KB
testcase_33 AC 421 ms
40,856 KB
testcase_34 AC 44 ms
12,288 KB
testcase_35 AC 220 ms
25,836 KB
testcase_36 AC 295 ms
30,528 KB
testcase_37 AC 484 ms
44,736 KB
testcase_38 AC 317 ms
33,044 KB
testcase_39 AC 90 ms
15,768 KB
testcase_40 AC 238 ms
27,220 KB
testcase_41 AC 124 ms
18,228 KB
testcase_42 AC 33 ms
11,520 KB
testcase_43 AC 60 ms
13,312 KB
testcase_44 AC 496 ms
44,900 KB
testcase_45 AC 446 ms
44,892 KB
testcase_46 AC 156 ms
20,616 KB
testcase_47 AC 160 ms
21,492 KB
testcase_48 AC 284 ms
29,144 KB
testcase_49 AC 520 ms
31,032 KB
testcase_50 AC 536 ms
31,052 KB
testcase_51 AC 547 ms
31,044 KB
testcase_52 AC 521 ms
31,052 KB
testcase_53 AC 535 ms
31,032 KB
testcase_54 AC 540 ms
48,764 KB
testcase_55 AC 540 ms
48,884 KB
testcase_56 AC 538 ms
48,760 KB
testcase_57 AC 560 ms
48,876 KB
testcase_58 AC 517 ms
48,744 KB
testcase_59 AC 536 ms
48,752 KB
testcase_60 AC 542 ms
48,756 KB
testcase_61 AC 544 ms
48,764 KB
testcase_62 AC 552 ms
48,756 KB
testcase_63 AC 540 ms
48,744 KB
testcase_64 AC 519 ms
48,748 KB
testcase_65 AC 567 ms
48,752 KB
testcase_66 AC 535 ms
48,748 KB
testcase_67 AC 528 ms
48,748 KB
testcase_68 AC 535 ms
48,748 KB
testcase_69 AC 521 ms
40,260 KB
testcase_70 AC 557 ms
40,304 KB
testcase_71 AC 520 ms
40,168 KB
testcase_72 AC 569 ms
40,128 KB
testcase_73 AC 530 ms
40,172 KB
testcase_74 AC 298 ms
25,132 KB
testcase_75 AC 529 ms
40,300 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n,h = map(int, input().split())
a = list(map(int, input().split()))
b = list(map(int, input().split()))

suma = [0]
for i in range(n):
    suma.append(suma[-1]+a[i])

sumb = [0]
for i in range(n):
    sumb.append(sumb[-1]+b[i])

now = 0
r = 0
ans = 0
for l in range(n):
    if l!=0:
        now -= sumb[r] - sumb[l-1]
    while r<n and now + (r-l+1)*b[r] <= h:
        now += (r-l+1) * b[r]
        r += 1
    ans = max(ans, suma[r] - suma[l])
print(ans)
0