結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 25 ms
10,752 KB
testcase_02 AC 29 ms
10,880 KB
testcase_03 AC 30 ms
10,880 KB
testcase_04 AC 30 ms
10,752 KB
testcase_05 AC 28 ms
10,752 KB
testcase_06 AC 31 ms
10,880 KB
testcase_07 AC 27 ms
10,880 KB
testcase_08 AC 29 ms
10,880 KB
testcase_09 WA -
testcase_10 AC 27 ms
10,752 KB
testcase_11 AC 28 ms
10,752 KB
testcase_12 AC 28 ms
10,880 KB
testcase_13 AC 26 ms
10,752 KB
testcase_14 AC 28 ms
10,880 KB
testcase_15 AC 27 ms
11,008 KB
testcase_16 AC 30 ms
10,880 KB
testcase_17 AC 28 ms
11,008 KB
testcase_18 AC 28 ms
11,008 KB
testcase_19 AC 27 ms
10,880 KB
testcase_20 AC 28 ms
10,880 KB
testcase_21 AC 28 ms
10,752 KB
testcase_22 AC 26 ms
10,880 KB
testcase_23 AC 28 ms
11,008 KB
testcase_24 AC 178 ms
20,836 KB
testcase_25 AC 149 ms
19,668 KB
testcase_26 AC 195 ms
22,448 KB
testcase_27 AC 248 ms
27,000 KB
testcase_28 AC 275 ms
29,144 KB
testcase_29 AC 102 ms
16,660 KB
testcase_30 AC 446 ms
40,312 KB
testcase_31 AC 255 ms
27,240 KB
testcase_32 AC 457 ms
41,876 KB
testcase_33 AC 440 ms
40,740 KB
testcase_34 AC 42 ms
12,288 KB
testcase_35 AC 220 ms
25,964 KB
testcase_36 AC 305 ms
30,400 KB
testcase_37 AC 507 ms
44,736 KB
testcase_38 AC 353 ms
33,088 KB
testcase_39 AC 97 ms
15,772 KB
testcase_40 AC 247 ms
27,228 KB
testcase_41 AC 123 ms
18,224 KB
testcase_42 AC 33 ms
11,392 KB
testcase_43 AC 58 ms
13,312 KB
testcase_44 AC 468 ms
44,896 KB
testcase_45 AC 470 ms
44,892 KB
testcase_46 AC 161 ms
20,764 KB
testcase_47 AC 158 ms
21,344 KB
testcase_48 AC 278 ms
29,268 KB
testcase_49 AC 518 ms
31,052 KB
testcase_50 AC 530 ms
31,044 KB
testcase_51 AC 528 ms
31,012 KB
testcase_52 AC 519 ms
31,144 KB
testcase_53 AC 510 ms
31,148 KB
testcase_54 AC 560 ms
48,748 KB
testcase_55 AC 538 ms
48,884 KB
testcase_56 AC 527 ms
48,764 KB
testcase_57 AC 548 ms
48,752 KB
testcase_58 AC 509 ms
48,744 KB
testcase_59 AC 556 ms
48,848 KB
testcase_60 AC 535 ms
48,756 KB
testcase_61 AC 560 ms
48,744 KB
testcase_62 AC 551 ms
48,756 KB
testcase_63 AC 552 ms
48,876 KB
testcase_64 AC 531 ms
48,720 KB
testcase_65 AC 548 ms
48,876 KB
testcase_66 AC 538 ms
48,752 KB
testcase_67 AC 511 ms
48,752 KB
testcase_68 AC 544 ms
48,720 KB
testcase_69 AC 520 ms
40,124 KB
testcase_70 AC 526 ms
40,176 KB
testcase_71 AC 537 ms
40,128 KB
testcase_72 AC 557 ms
40,256 KB
testcase_73 AC 548 ms
40,128 KB
testcase_74 AC 261 ms
25,060 KB
testcase_75 AC 523 ms
40,128 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

# WA 解法、不等号のミス
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