結果

問題 No.2694 The Early Bird Catches The Worm
ユーザー flygonflygon
提出日時 2024-03-22 21:54:50
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 144 ms / 2,000 ms
コード長 582 bytes
コンパイル時間 376 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 132,188 KB
最終ジャッジ日時 2024-09-30 11:23:37
合計ジャッジ時間 9,377 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
54,656 KB
testcase_01 AC 39 ms
54,400 KB
testcase_02 AC 39 ms
54,784 KB
testcase_03 AC 39 ms
54,272 KB
testcase_04 AC 39 ms
54,528 KB
testcase_05 AC 38 ms
54,528 KB
testcase_06 AC 42 ms
61,568 KB
testcase_07 AC 42 ms
54,528 KB
testcase_08 AC 42 ms
61,056 KB
testcase_09 AC 40 ms
55,296 KB
testcase_10 AC 39 ms
54,656 KB
testcase_11 AC 44 ms
55,296 KB
testcase_12 AC 38 ms
55,040 KB
testcase_13 AC 40 ms
54,912 KB
testcase_14 AC 40 ms
55,552 KB
testcase_15 AC 41 ms
55,296 KB
testcase_16 AC 39 ms
55,296 KB
testcase_17 AC 38 ms
55,424 KB
testcase_18 AC 40 ms
55,296 KB
testcase_19 AC 37 ms
54,656 KB
testcase_20 AC 39 ms
55,168 KB
testcase_21 AC 39 ms
54,912 KB
testcase_22 AC 38 ms
55,040 KB
testcase_23 AC 40 ms
54,784 KB
testcase_24 AC 70 ms
89,088 KB
testcase_25 AC 75 ms
87,852 KB
testcase_26 AC 81 ms
91,520 KB
testcase_27 AC 83 ms
93,440 KB
testcase_28 AC 87 ms
92,160 KB
testcase_29 AC 67 ms
81,620 KB
testcase_30 AC 103 ms
102,136 KB
testcase_31 AC 87 ms
93,056 KB
testcase_32 AC 114 ms
118,380 KB
testcase_33 AC 109 ms
102,656 KB
testcase_34 AC 56 ms
71,168 KB
testcase_35 AC 86 ms
94,220 KB
testcase_36 AC 88 ms
94,208 KB
testcase_37 AC 124 ms
124,172 KB
testcase_38 AC 95 ms
97,024 KB
testcase_39 AC 66 ms
80,256 KB
testcase_40 AC 80 ms
93,568 KB
testcase_41 AC 70 ms
84,624 KB
testcase_42 AC 48 ms
65,024 KB
testcase_43 AC 52 ms
70,400 KB
testcase_44 AC 126 ms
124,052 KB
testcase_45 AC 133 ms
124,344 KB
testcase_46 AC 77 ms
89,088 KB
testcase_47 AC 80 ms
89,344 KB
testcase_48 AC 94 ms
92,672 KB
testcase_49 AC 125 ms
106,776 KB
testcase_50 AC 117 ms
106,000 KB
testcase_51 AC 119 ms
106,336 KB
testcase_52 AC 115 ms
106,488 KB
testcase_53 AC 118 ms
106,524 KB
testcase_54 AC 139 ms
130,456 KB
testcase_55 AC 139 ms
130,124 KB
testcase_56 AC 134 ms
130,076 KB
testcase_57 AC 134 ms
132,156 KB
testcase_58 AC 144 ms
130,104 KB
testcase_59 AC 135 ms
132,188 KB
testcase_60 AC 136 ms
130,256 KB
testcase_61 AC 136 ms
130,128 KB
testcase_62 AC 139 ms
130,236 KB
testcase_63 AC 134 ms
131,672 KB
testcase_64 AC 135 ms
129,972 KB
testcase_65 AC 135 ms
129,996 KB
testcase_66 AC 136 ms
130,204 KB
testcase_67 AC 138 ms
130,584 KB
testcase_68 AC 139 ms
129,968 KB
testcase_69 AC 122 ms
126,792 KB
testcase_70 AC 121 ms
127,140 KB
testcase_71 AC 123 ms
127,060 KB
testcase_72 AC 124 ms
126,804 KB
testcase_73 AC 122 ms
127,056 KB
testcase_74 AC 85 ms
97,652 KB
testcase_75 AC 123 ms
127,060 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
sys.setrecursionlimit(5*10**5)
input = sys.stdin.readline
from collections import defaultdict, deque, Counter
from heapq import heappop, heappush
from bisect import bisect_left, bisect_right
from math import gcd

n,h = map(int,input().split())
a = list(map(int,input().split()))
b = list(map(int,input().split()))
r = 0
now = 0
tot = 0
x = 0
ans = 0
for l in range(n):
    while r < n and now+(r-l+1)*b[r] <=h:
        now += (r-l+1)*b[r]
        tot += b[r]
        x += a[r]
        r += 1
    ans = max(ans, x)
    now -= tot
    x -= a[l]
    tot -= b[l]

print(ans)
0