結果

問題 No.1148 土偶Ⅲ
ユーザー rlangevinrlangevin
提出日時 2023-02-04 14:18:45
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 225 ms / 2,000 ms
コード長 312 bytes
コンパイル時間 155 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 86,724 KB
最終ジャッジ日時 2024-07-03 11:57:19
合計ジャッジ時間 4,668 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
53,504 KB
testcase_01 AC 42 ms
53,632 KB
testcase_02 AC 42 ms
53,504 KB
testcase_03 AC 41 ms
53,248 KB
testcase_04 AC 41 ms
53,760 KB
testcase_05 AC 100 ms
80,228 KB
testcase_06 AC 154 ms
85,664 KB
testcase_07 AC 127 ms
83,076 KB
testcase_08 AC 225 ms
86,724 KB
testcase_09 AC 157 ms
85,844 KB
testcase_10 AC 110 ms
80,552 KB
testcase_11 AC 156 ms
84,680 KB
testcase_12 AC 83 ms
76,928 KB
testcase_13 AC 86 ms
77,184 KB
testcase_14 AC 84 ms
76,840 KB
testcase_15 AC 126 ms
82,048 KB
testcase_16 AC 94 ms
78,392 KB
testcase_17 AC 153 ms
85,988 KB
testcase_18 AC 88 ms
76,868 KB
testcase_19 AC 105 ms
80,692 KB
testcase_20 AC 123 ms
81,816 KB
testcase_21 AC 115 ms
80,404 KB
testcase_22 AC 96 ms
76,928 KB
testcase_23 AC 88 ms
76,800 KB
testcase_24 AC 93 ms
76,660 KB
testcase_25 AC 93 ms
76,544 KB
testcase_26 AC 133 ms
77,184 KB
testcase_27 AC 121 ms
76,800 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import *

N, W = map(int, input().split())
Q = deque()
D = defaultdict(int)
ans = 0
S = 0
for i in range(N):
    A = int(input())
    D[A] += 1
    S += A
    Q.append(A)
    while D[A] == 2 or S > W:
        B = Q.popleft()
        D[B] -= 1
        S -= B
    ans = max(ans, len(Q))
print(ans)
0