結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
51,840 KB
testcase_01 AC 35 ms
51,968 KB
testcase_02 WA -
testcase_03 AC 32 ms
52,352 KB
testcase_04 AC 33 ms
52,224 KB
testcase_05 AC 33 ms
51,968 KB
testcase_06 AC 37 ms
59,008 KB
testcase_07 AC 33 ms
52,352 KB
testcase_08 AC 36 ms
58,752 KB
testcase_09 AC 36 ms
52,736 KB
testcase_10 AC 34 ms
52,352 KB
testcase_11 AC 36 ms
52,352 KB
testcase_12 AC 35 ms
52,224 KB
testcase_13 WA -
testcase_14 AC 36 ms
52,224 KB
testcase_15 AC 36 ms
52,736 KB
testcase_16 AC 36 ms
52,352 KB
testcase_17 AC 33 ms
52,096 KB
testcase_18 AC 33 ms
52,864 KB
testcase_19 AC 33 ms
52,096 KB
testcase_20 AC 34 ms
52,992 KB
testcase_21 AC 32 ms
51,968 KB
testcase_22 AC 32 ms
52,736 KB
testcase_23 AC 33 ms
52,224 KB
testcase_24 AC 70 ms
91,520 KB
testcase_25 AC 69 ms
89,384 KB
testcase_26 AC 74 ms
94,080 KB
testcase_27 AC 83 ms
99,072 KB
testcase_28 AC 84 ms
98,048 KB
testcase_29 AC 56 ms
78,848 KB
testcase_30 AC 109 ms
107,900 KB
testcase_31 AC 85 ms
99,072 KB
testcase_32 AC 113 ms
108,288 KB
testcase_33 AC 114 ms
108,012 KB
testcase_34 AC 44 ms
65,152 KB
testcase_35 AC 88 ms
99,712 KB
testcase_36 AC 90 ms
98,944 KB
testcase_37 AC 123 ms
112,840 KB
testcase_38 AC 99 ms
98,088 KB
testcase_39 AC 55 ms
77,184 KB
testcase_40 AC 88 ms
98,816 KB
testcase_41 AC 59 ms
81,408 KB
testcase_42 AC 43 ms
62,720 KB
testcase_43 AC 49 ms
69,888 KB
testcase_44 AC 125 ms
112,060 KB
testcase_45 AC 123 ms
112,508 KB
testcase_46 AC 67 ms
89,216 KB
testcase_47 AC 76 ms
91,648 KB
testcase_48 AC 90 ms
98,176 KB
testcase_49 AC 121 ms
113,868 KB
testcase_50 AC 122 ms
113,792 KB
testcase_51 AC 120 ms
113,664 KB
testcase_52 AC 122 ms
113,408 KB
testcase_53 AC 120 ms
114,176 KB
testcase_54 AC 136 ms
137,280 KB
testcase_55 AC 138 ms
137,484 KB
testcase_56 AC 139 ms
138,168 KB
testcase_57 AC 140 ms
137,996 KB
testcase_58 AC 137 ms
137,680 KB
testcase_59 AC 142 ms
137,476 KB
testcase_60 AC 141 ms
137,664 KB
testcase_61 AC 149 ms
137,540 KB
testcase_62 AC 137 ms
138,044 KB
testcase_63 AC 142 ms
137,584 KB
testcase_64 AC 145 ms
137,992 KB
testcase_65 AC 143 ms
137,796 KB
testcase_66 AC 143 ms
137,804 KB
testcase_67 AC 139 ms
137,536 KB
testcase_68 AC 144 ms
137,860 KB
testcase_69 AC 137 ms
133,516 KB
testcase_70 AC 132 ms
133,048 KB
testcase_71 AC 132 ms
132,804 KB
testcase_72 AC 131 ms
133,380 KB
testcase_73 AC 131 ms
132,928 KB
testcase_74 AC 86 ms
106,112 KB
testcase_75 AC 131 ms
133,180 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])
        j += 1
        tmp += B[j-1] * (j - i)
    tmp -= (B2[j] - B2[i])

print(ans)
0