結果

問題 No.2694 The Early Bird Catches The Worm
ユーザー tkykwtnbtkykwtnb
提出日時 2024-03-23 08:25:23
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 554 ms / 2,000 ms
コード長 398 bytes
コンパイル時間 103 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 48,888 KB
最終ジャッジ日時 2024-09-30 13:07:41
合計ジャッジ時間 23,372 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 28 ms
10,752 KB
testcase_01 AC 29 ms
10,752 KB
testcase_02 AC 30 ms
10,624 KB
testcase_03 AC 29 ms
10,752 KB
testcase_04 AC 29 ms
10,624 KB
testcase_05 AC 29 ms
10,752 KB
testcase_06 AC 28 ms
10,880 KB
testcase_07 AC 27 ms
10,752 KB
testcase_08 AC 29 ms
10,752 KB
testcase_09 AC 27 ms
10,752 KB
testcase_10 AC 27 ms
10,752 KB
testcase_11 AC 28 ms
10,624 KB
testcase_12 AC 29 ms
10,624 KB
testcase_13 AC 27 ms
10,624 KB
testcase_14 AC 31 ms
10,752 KB
testcase_15 AC 31 ms
10,880 KB
testcase_16 AC 29 ms
10,880 KB
testcase_17 AC 29 ms
10,880 KB
testcase_18 AC 29 ms
10,880 KB
testcase_19 AC 28 ms
10,752 KB
testcase_20 AC 29 ms
11,008 KB
testcase_21 AC 29 ms
10,624 KB
testcase_22 AC 28 ms
10,880 KB
testcase_23 AC 29 ms
10,880 KB
testcase_24 AC 169 ms
20,760 KB
testcase_25 AC 148 ms
19,552 KB
testcase_26 AC 177 ms
22,228 KB
testcase_27 AC 240 ms
26,880 KB
testcase_28 AC 262 ms
28,988 KB
testcase_29 AC 101 ms
16,512 KB
testcase_30 AC 390 ms
40,040 KB
testcase_31 AC 238 ms
27,120 KB
testcase_32 AC 452 ms
41,744 KB
testcase_33 AC 419 ms
40,496 KB
testcase_34 AC 46 ms
12,288 KB
testcase_35 AC 225 ms
25,704 KB
testcase_36 AC 284 ms
30,200 KB
testcase_37 AC 474 ms
44,604 KB
testcase_38 AC 325 ms
32,992 KB
testcase_39 AC 88 ms
15,624 KB
testcase_40 AC 250 ms
27,064 KB
testcase_41 AC 126 ms
18,224 KB
testcase_42 AC 35 ms
11,392 KB
testcase_43 AC 61 ms
13,184 KB
testcase_44 AC 481 ms
44,452 KB
testcase_45 AC 454 ms
44,576 KB
testcase_46 AC 158 ms
20,632 KB
testcase_47 AC 169 ms
21,172 KB
testcase_48 AC 281 ms
28,972 KB
testcase_49 AC 490 ms
29,932 KB
testcase_50 AC 505 ms
29,944 KB
testcase_51 AC 507 ms
29,936 KB
testcase_52 AC 480 ms
29,928 KB
testcase_53 AC 488 ms
29,936 KB
testcase_54 AC 536 ms
48,732 KB
testcase_55 AC 538 ms
48,616 KB
testcase_56 AC 525 ms
48,712 KB
testcase_57 AC 551 ms
48,760 KB
testcase_58 AC 522 ms
48,728 KB
testcase_59 AC 536 ms
48,888 KB
testcase_60 AC 527 ms
48,616 KB
testcase_61 AC 544 ms
48,632 KB
testcase_62 AC 554 ms
48,760 KB
testcase_63 AC 552 ms
48,640 KB
testcase_64 AC 540 ms
48,632 KB
testcase_65 AC 553 ms
48,728 KB
testcase_66 AC 537 ms
48,760 KB
testcase_67 AC 534 ms
48,640 KB
testcase_68 AC 521 ms
48,696 KB
testcase_69 AC 470 ms
39,156 KB
testcase_70 AC 471 ms
39,152 KB
testcase_71 AC 498 ms
39,272 KB
testcase_72 AC 485 ms
39,024 KB
testcase_73 AC 493 ms
39,156 KB
testcase_74 AC 248 ms
24,868 KB
testcase_75 AC 481 ms
39,236 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N,H=map(int,input().split())
A=[0]+list(map(int,input().split()))
B=[0]+list(map(int,input().split()))
cumA=[0 for _ in range(N+1)]
cumB=[0 for _ in range(N+1)]
for i in range(1,N+1):
    cumA[i]=cumA[i-1]+A[i]
    cumB[i]=cumB[i-1]+B[i]
ans=0
l=1
s=0
for r in range(1,N+1):
    s+=(r-l+1)*B[r]
    while s>H:
        s-=cumB[r]-cumB[l-1]
        l+=1
    ans=max(ans,cumA[r]-cumA[l-1])
print(ans)
0