結果

問題 No.2601 Very Poor
ユーザー 👑 KA37RIKA37RI
提出日時 2024-01-16 11:41:33
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 246 ms / 2,000 ms
コード長 487 bytes
コンパイル時間 196 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 29,720 KB
最終ジャッジ日時 2024-09-30 06:39:37
合計ジャッジ時間 6,637 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 25 ms
10,752 KB
testcase_01 AC 25 ms
10,752 KB
testcase_02 AC 25 ms
10,752 KB
testcase_03 AC 26 ms
10,752 KB
testcase_04 AC 26 ms
10,752 KB
testcase_05 AC 28 ms
10,880 KB
testcase_06 AC 28 ms
10,880 KB
testcase_07 AC 26 ms
11,008 KB
testcase_08 AC 27 ms
10,880 KB
testcase_09 AC 27 ms
10,880 KB
testcase_10 AC 27 ms
11,008 KB
testcase_11 AC 27 ms
10,880 KB
testcase_12 AC 27 ms
10,880 KB
testcase_13 AC 27 ms
10,880 KB
testcase_14 AC 26 ms
11,008 KB
testcase_15 AC 232 ms
29,720 KB
testcase_16 AC 233 ms
29,592 KB
testcase_17 AC 240 ms
29,588 KB
testcase_18 AC 238 ms
29,544 KB
testcase_19 AC 239 ms
29,588 KB
testcase_20 AC 237 ms
29,592 KB
testcase_21 AC 237 ms
29,588 KB
testcase_22 AC 236 ms
29,592 KB
testcase_23 AC 237 ms
29,592 KB
testcase_24 AC 241 ms
29,716 KB
testcase_25 AC 241 ms
29,588 KB
testcase_26 AC 238 ms
29,588 KB
testcase_27 AC 238 ms
29,592 KB
testcase_28 AC 242 ms
29,592 KB
testcase_29 AC 241 ms
29,504 KB
testcase_30 AC 235 ms
29,592 KB
testcase_31 AC 239 ms
29,588 KB
testcase_32 AC 246 ms
29,588 KB
testcase_33 AC 240 ms
29,592 KB
testcase_34 AC 242 ms
29,588 KB
testcase_35 AC 27 ms
10,880 KB
testcase_36 AC 26 ms
11,008 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def solve(n, x, a):
	if n == 1:
		return a[0] if a[0] <= x else 0
			
	ans = 0
	r = 1
	s = 0
	for l in range(1, n - 1):
		while r < n - 1 and s + a[r] <= x:
			s += a[r]
			r += 1
		if s <= x:
			ans = max(s, ans)
		s -= a[l]
	
	r = 0
	s = sum(a)
	for l in range(n):
		while r < l and s + a[r] <= x:
			s += a[r]
			r += 1
		if s <= x:
			ans = max(s, ans)
		s -= a[l]
		
	return ans

n, x = [int(y) for y in input().split()]
a = [int(y) for y in input().split()]

print(solve(n, x, a))
0