結果

問題 No.2694 The Early Bird Catches The Worm
ユーザー shobonvipshobonvip
提出日時 2024-03-23 04:04:03
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 170 ms / 2,000 ms
コード長 629 bytes
コンパイル時間 219 ms
コンパイル使用メモリ 81,664 KB
実行使用メモリ 133,356 KB
最終ジャッジ日時 2024-09-30 13:02:21
合計ジャッジ時間 10,387 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
51,584 KB
testcase_01 AC 34 ms
51,840 KB
testcase_02 AC 35 ms
51,840 KB
testcase_03 AC 35 ms
51,584 KB
testcase_04 AC 35 ms
52,352 KB
testcase_05 AC 38 ms
51,840 KB
testcase_06 AC 42 ms
59,392 KB
testcase_07 AC 36 ms
52,096 KB
testcase_08 AC 42 ms
58,880 KB
testcase_09 AC 40 ms
52,736 KB
testcase_10 AC 42 ms
52,608 KB
testcase_11 AC 38 ms
52,864 KB
testcase_12 AC 37 ms
51,968 KB
testcase_13 AC 37 ms
52,096 KB
testcase_14 AC 41 ms
53,248 KB
testcase_15 AC 40 ms
52,992 KB
testcase_16 AC 39 ms
52,736 KB
testcase_17 AC 38 ms
52,736 KB
testcase_18 AC 37 ms
52,736 KB
testcase_19 AC 36 ms
52,096 KB
testcase_20 AC 37 ms
52,864 KB
testcase_21 AC 34 ms
51,968 KB
testcase_22 AC 36 ms
52,736 KB
testcase_23 AC 37 ms
53,120 KB
testcase_24 AC 77 ms
90,112 KB
testcase_25 AC 81 ms
87,936 KB
testcase_26 AC 87 ms
93,048 KB
testcase_27 AC 99 ms
98,816 KB
testcase_28 AC 102 ms
98,048 KB
testcase_29 AC 64 ms
79,500 KB
testcase_30 AC 137 ms
104,112 KB
testcase_31 AC 105 ms
98,816 KB
testcase_32 AC 122 ms
104,776 KB
testcase_33 AC 129 ms
104,944 KB
testcase_34 AC 58 ms
69,760 KB
testcase_35 AC 97 ms
98,048 KB
testcase_36 AC 105 ms
98,560 KB
testcase_37 AC 134 ms
108,724 KB
testcase_38 AC 118 ms
97,792 KB
testcase_39 AC 69 ms
78,208 KB
testcase_40 AC 95 ms
98,688 KB
testcase_41 AC 75 ms
84,608 KB
testcase_42 AC 50 ms
63,488 KB
testcase_43 AC 54 ms
69,376 KB
testcase_44 AC 140 ms
108,088 KB
testcase_45 AC 135 ms
107,964 KB
testcase_46 AC 86 ms
90,236 KB
testcase_47 AC 82 ms
90,368 KB
testcase_48 AC 101 ms
97,920 KB
testcase_49 AC 142 ms
113,408 KB
testcase_50 AC 142 ms
113,536 KB
testcase_51 AC 137 ms
113,536 KB
testcase_52 AC 138 ms
113,408 KB
testcase_53 AC 142 ms
113,664 KB
testcase_54 AC 170 ms
133,356 KB
testcase_55 AC 163 ms
133,092 KB
testcase_56 AC 161 ms
133,212 KB
testcase_57 AC 158 ms
133,092 KB
testcase_58 AC 159 ms
133,216 KB
testcase_59 AC 155 ms
133,216 KB
testcase_60 AC 161 ms
132,968 KB
testcase_61 AC 158 ms
132,964 KB
testcase_62 AC 159 ms
133,092 KB
testcase_63 AC 157 ms
132,836 KB
testcase_64 AC 156 ms
133,348 KB
testcase_65 AC 160 ms
133,000 KB
testcase_66 AC 164 ms
133,348 KB
testcase_67 AC 161 ms
133,164 KB
testcase_68 AC 160 ms
133,140 KB
testcase_69 AC 142 ms
128,560 KB
testcase_70 AC 143 ms
128,620 KB
testcase_71 AC 144 ms
128,356 KB
testcase_72 AC 140 ms
128,416 KB
testcase_73 AC 141 ms
128,616 KB
testcase_74 AC 98 ms
103,680 KB
testcase_75 AC 144 ms
128,360 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n,h=map(int,input().split())
a=list(map(int,input().split()))
b=list(map(int,input().split()))
rui=[0]*(n+1)
for i in range(n):
	rui[i+1]=rui[i]+b[i]

right = 0
now_manzoku = 0
now_hirou = 0
ans = 0
for left in range(n):
	while right<n:
		if right<left:
			now_hirou+=(right-left+1)*b[right]
			now_manzoku+=a[right]
			right+=1
			continue
		if now_hirou>h:break
		now_hirou+=(right-left+1)*b[right]
		now_manzoku+=a[right]
		right+=1
		if now_hirou>h:
			right-=1
			now_manzoku-=a[right]
			now_hirou-=(right-left+1)*b[right]
			break
	ans=max(ans,now_manzoku)
	now_manzoku-=a[left]
	now_hirou-=rui[right]-rui[left]
print(ans)
0