結果

問題 No.2694 The Early Bird Catches The Worm
ユーザー MMMM
提出日時 2024-05-22 00:26:15
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 780 bytes
コンパイル時間 185 ms
コンパイル使用メモリ 82,828 KB
実行使用メモリ 150,980 KB
最終ジャッジ日時 2024-05-22 00:26:29
合計ジャッジ時間 13,262 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 36 ms
52,504 KB
testcase_02 AC 36 ms
53,076 KB
testcase_03 WA -
testcase_04 RE -
testcase_05 RE -
testcase_06 RE -
testcase_07 RE -
testcase_08 RE -
testcase_09 RE -
testcase_10 WA -
testcase_11 RE -
testcase_12 WA -
testcase_13 AC 36 ms
52,952 KB
testcase_14 RE -
testcase_15 RE -
testcase_16 RE -
testcase_17 RE -
testcase_18 RE -
testcase_19 RE -
testcase_20 RE -
testcase_21 RE -
testcase_22 RE -
testcase_23 RE -
testcase_24 RE -
testcase_25 RE -
testcase_26 RE -
testcase_27 RE -
testcase_28 RE -
testcase_29 RE -
testcase_30 RE -
testcase_31 RE -
testcase_32 RE -
testcase_33 RE -
testcase_34 RE -
testcase_35 RE -
testcase_36 RE -
testcase_37 RE -
testcase_38 RE -
testcase_39 RE -
testcase_40 RE -
testcase_41 RE -
testcase_42 RE -
testcase_43 RE -
testcase_44 RE -
testcase_45 RE -
testcase_46 RE -
testcase_47 RE -
testcase_48 RE -
testcase_49 WA -
testcase_50 WA -
testcase_51 WA -
testcase_52 WA -
testcase_53 WA -
testcase_54 RE -
testcase_55 RE -
testcase_56 RE -
testcase_57 RE -
testcase_58 RE -
testcase_59 RE -
testcase_60 RE -
testcase_61 RE -
testcase_62 RE -
testcase_63 RE -
testcase_64 RE -
testcase_65 RE -
testcase_66 RE -
testcase_67 RE -
testcase_68 RE -
testcase_69 AC 132 ms
128,848 KB
testcase_70 AC 136 ms
128,660 KB
testcase_71 AC 136 ms
128,500 KB
testcase_72 AC 137 ms
128,772 KB
testcase_73 AC 135 ms
128,800 KB
testcase_74 AC 98 ms
114,764 KB
testcase_75 AC 139 ms
129,004 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def max_satisfaction(N, H, A, B):
    max_satisfaction = 0
    current_fatigue = 0
    current_satisfaction = 0
    left = 0
    
    for right in range(N):
        current_satisfaction += A[right]
        current_fatigue += B[right] * (right - left + 1)
        
        while current_fatigue > H:
            current_fatigue -= B[left] * (right - left + 1)
            left += 1
            current_satisfaction -= A[left - 1]
            
        max_satisfaction = max(max_satisfaction, current_satisfaction)
        
    return max_satisfaction

# Input reading
import sys
input = sys.stdin.read
data = input().split()

N = int(data[0])
H = int(data[1])
A = list(map(int, data[2:N+2]))
B = list(map(int, data[N+2:2*N+2]))

result = max_satisfaction(N, H, A, B)
print(result)
0