結果

問題 No.1148 土偶Ⅲ
ユーザー 双六双六
提出日時 2020-08-09 01:53:00
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 95 ms / 2,000 ms
コード長 718 bytes
コンパイル時間 282 ms
コンパイル使用メモリ 82,164 KB
実行使用メモリ 90,832 KB
最終ジャッジ日時 2024-10-02 13:12:55
合計ジャッジ時間 3,501 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
53,560 KB
testcase_01 AC 40 ms
54,972 KB
testcase_02 AC 40 ms
54,456 KB
testcase_03 AC 40 ms
54,204 KB
testcase_04 AC 40 ms
55,064 KB
testcase_05 AC 63 ms
77,188 KB
testcase_06 AC 95 ms
90,832 KB
testcase_07 AC 85 ms
84,672 KB
testcase_08 AC 84 ms
88,040 KB
testcase_09 AC 88 ms
86,736 KB
testcase_10 AC 63 ms
77,256 KB
testcase_11 AC 82 ms
86,956 KB
testcase_12 AC 48 ms
64,944 KB
testcase_13 AC 53 ms
67,708 KB
testcase_14 AC 50 ms
66,548 KB
testcase_15 AC 74 ms
83,172 KB
testcase_16 AC 57 ms
73,648 KB
testcase_17 AC 87 ms
88,472 KB
testcase_18 AC 50 ms
64,296 KB
testcase_19 AC 64 ms
78,772 KB
testcase_20 AC 72 ms
81,896 KB
testcase_21 AC 62 ms
78,276 KB
testcase_22 AC 50 ms
67,208 KB
testcase_23 AC 52 ms
68,080 KB
testcase_24 AC 54 ms
70,392 KB
testcase_25 AC 55 ms
70,716 KB
testcase_26 AC 73 ms
81,288 KB
testcase_27 AC 50 ms
66,676 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys; input = sys.stdin.buffer.readline
sys.setrecursionlimit(10**7)
from collections import defaultdict
con = 10 ** 9 + 7; INF = float("inf")

def getlist():
	return list(map(int, input().split()))

#処理内容
def main():
	N, W = getlist()
	A = []
	D = defaultdict(int)
	for i in range(N):
		a = int(input())
		A.append(a)

	i = 0; j = 0
	val = 0
	ans = 0
	jud = 0
	while True:
		if val > W or jud == 1:
			if i >= N:
				break
			D[A[i]] -= 1; val -= A[i]
			if D[A[i]] == 1:
				jud = 0
			i += 1
		else:
			if j >= N:
				break
			D[A[j]] += 1; val += A[j]
			if D[A[j]] == 2:
				jud = 1
			else:
				if val <= W:
					ans = max(ans, j - i + 1)

			j += 1

	print(ans)

if __name__ == '__main__':
	main()
0