結果

問題 No.1148 土偶Ⅲ
ユーザー square1001square1001
提出日時 2020-08-05 20:30:43
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 365 ms / 2,000 ms
コード長 340 bytes
コンパイル時間 86 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 17,892 KB
最終ジャッジ日時 2024-09-17 10:59:03
合計ジャッジ時間 4,905 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 28 ms
10,624 KB
testcase_01 AC 28 ms
10,752 KB
testcase_02 AC 27 ms
10,752 KB
testcase_03 AC 25 ms
10,752 KB
testcase_04 AC 28 ms
10,624 KB
testcase_05 AC 141 ms
13,744 KB
testcase_06 AC 343 ms
17,784 KB
testcase_07 AC 204 ms
16,668 KB
testcase_08 AC 272 ms
17,628 KB
testcase_09 AC 271 ms
17,432 KB
testcase_10 AC 146 ms
13,868 KB
testcase_11 AC 246 ms
17,448 KB
testcase_12 AC 40 ms
11,136 KB
testcase_13 AC 60 ms
11,520 KB
testcase_14 AC 51 ms
11,520 KB
testcase_15 AC 182 ms
16,508 KB
testcase_16 AC 99 ms
12,416 KB
testcase_17 AC 346 ms
17,892 KB
testcase_18 AC 34 ms
10,880 KB
testcase_19 AC 152 ms
13,928 KB
testcase_20 AC 151 ms
14,388 KB
testcase_21 AC 120 ms
13,872 KB
testcase_22 AC 41 ms
11,008 KB
testcase_23 AC 78 ms
10,752 KB
testcase_24 AC 106 ms
10,880 KB
testcase_25 AC 119 ms
10,880 KB
testcase_26 AC 365 ms
11,648 KB
testcase_27 AC 70 ms
10,752 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N, W = map(int, input().split())
A = [ int(input()) for i in range(N) ]
cnts = {}
for i in range(N):
	cnts[A[i]] = 0
R = 0
S = 0
ans = 0
for i in range(N):
	while R < N and S + A[R] <= W and cnts[A[R]] == 0:
		cnts[A[R]] += 1
		S += A[R]
		R += 1
	ans = max(ans, R - i)
	if R > i:
		cnts[A[i]] -= 1
		S -= A[i]
	else:
		R = i + 1
print(ans)
0