結果

問題 No.2694 The Early Bird Catches The Worm
ユーザー ntudantuda
提出日時 2024-03-23 12:41:16
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 151 ms / 2,000 ms
コード長 469 bytes
コンパイル時間 269 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 138,176 KB
最終ジャッジ日時 2024-09-30 13:13:35
合計ジャッジ時間 9,197 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 33 ms
51,968 KB
testcase_01 AC 36 ms
51,840 KB
testcase_02 AC 35 ms
51,584 KB
testcase_03 AC 33 ms
52,480 KB
testcase_04 AC 32 ms
52,096 KB
testcase_05 AC 32 ms
52,224 KB
testcase_06 AC 36 ms
58,880 KB
testcase_07 AC 34 ms
52,736 KB
testcase_08 AC 36 ms
58,368 KB
testcase_09 AC 33 ms
52,608 KB
testcase_10 AC 33 ms
52,480 KB
testcase_11 AC 35 ms
52,480 KB
testcase_12 AC 34 ms
51,840 KB
testcase_13 AC 32 ms
52,224 KB
testcase_14 AC 33 ms
52,608 KB
testcase_15 AC 35 ms
52,608 KB
testcase_16 AC 34 ms
52,608 KB
testcase_17 AC 34 ms
53,120 KB
testcase_18 AC 35 ms
52,864 KB
testcase_19 AC 33 ms
51,968 KB
testcase_20 AC 34 ms
52,224 KB
testcase_21 AC 32 ms
52,224 KB
testcase_22 AC 33 ms
51,968 KB
testcase_23 AC 33 ms
52,608 KB
testcase_24 AC 72 ms
91,136 KB
testcase_25 AC 70 ms
88,704 KB
testcase_26 AC 80 ms
94,412 KB
testcase_27 AC 92 ms
98,560 KB
testcase_28 AC 92 ms
98,048 KB
testcase_29 AC 65 ms
78,976 KB
testcase_30 AC 108 ms
108,492 KB
testcase_31 AC 85 ms
98,992 KB
testcase_32 AC 114 ms
108,424 KB
testcase_33 AC 110 ms
108,780 KB
testcase_34 AC 44 ms
65,536 KB
testcase_35 AC 84 ms
99,712 KB
testcase_36 AC 87 ms
98,816 KB
testcase_37 AC 124 ms
112,716 KB
testcase_38 AC 97 ms
98,488 KB
testcase_39 AC 57 ms
76,672 KB
testcase_40 AC 85 ms
99,072 KB
testcase_41 AC 60 ms
81,664 KB
testcase_42 AC 42 ms
62,464 KB
testcase_43 AC 50 ms
70,016 KB
testcase_44 AC 124 ms
112,268 KB
testcase_45 AC 122 ms
112,324 KB
testcase_46 AC 65 ms
88,704 KB
testcase_47 AC 73 ms
92,288 KB
testcase_48 AC 92 ms
97,792 KB
testcase_49 AC 126 ms
113,664 KB
testcase_50 AC 124 ms
114,048 KB
testcase_51 AC 120 ms
113,664 KB
testcase_52 AC 123 ms
113,664 KB
testcase_53 AC 122 ms
113,664 KB
testcase_54 AC 137 ms
137,872 KB
testcase_55 AC 142 ms
137,668 KB
testcase_56 AC 140 ms
137,928 KB
testcase_57 AC 141 ms
137,668 KB
testcase_58 AC 145 ms
137,664 KB
testcase_59 AC 136 ms
137,540 KB
testcase_60 AC 142 ms
137,788 KB
testcase_61 AC 139 ms
138,104 KB
testcase_62 AC 148 ms
137,616 KB
testcase_63 AC 151 ms
137,404 KB
testcase_64 AC 143 ms
137,872 KB
testcase_65 AC 141 ms
137,544 KB
testcase_66 AC 144 ms
137,924 KB
testcase_67 AC 139 ms
137,284 KB
testcase_68 AC 141 ms
138,176 KB
testcase_69 AC 131 ms
133,700 KB
testcase_70 AC 131 ms
133,128 KB
testcase_71 AC 132 ms
132,928 KB
testcase_72 AC 133 ms
133,312 KB
testcase_73 AC 131 ms
133,052 KB
testcase_74 AC 88 ms
106,344 KB
testcase_75 AC 130 ms
133,400 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N,H = map(int,input().split())
A = list(map(int,input().split()))
B = list(map(int,input().split()))
A2 = [0] + A[:]
B2 = [0] + B[:]
for i in range(1,N + 1):
    A2[i] += A2[i-1]
    B2[i] += B2[i-1]
j = 0
ans = 0
tmp = 0
for i in range(N):
    while j <= N and tmp <= H:
        ans = max(ans,A2[j] - A2[i])
        #print(i,j,tmp,A2[j] - A2[i])
        if j == N:
            break
        j += 1
        tmp += B[j-1] * (j - i)
    tmp -= (B2[j] - B2[i])

print(ans)
0