結果

問題 No.1148 土偶Ⅲ
ユーザー DrDrpilotDrDrpilot
提出日時 2022-01-20 13:58:02
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 376 ms / 2,000 ms
コード長 318 bytes
コンパイル時間 101 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 16,176 KB
最終ジャッジ日時 2024-11-23 17:54:49
合計ジャッジ時間 5,901 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 29 ms
10,752 KB
testcase_01 AC 28 ms
10,624 KB
testcase_02 AC 27 ms
10,752 KB
testcase_03 AC 27 ms
10,752 KB
testcase_04 AC 27 ms
10,624 KB
testcase_05 AC 142 ms
13,336 KB
testcase_06 AC 376 ms
16,048 KB
testcase_07 AC 240 ms
15,920 KB
testcase_08 AC 314 ms
15,936 KB
testcase_09 AC 313 ms
16,052 KB
testcase_10 AC 164 ms
13,080 KB
testcase_11 AC 306 ms
15,792 KB
testcase_12 AC 47 ms
11,008 KB
testcase_13 AC 64 ms
11,392 KB
testcase_14 AC 54 ms
11,264 KB
testcase_15 AC 230 ms
16,176 KB
testcase_16 AC 110 ms
11,804 KB
testcase_17 AC 363 ms
15,804 KB
testcase_18 AC 39 ms
10,752 KB
testcase_19 AC 164 ms
13,080 KB
testcase_20 AC 204 ms
13,356 KB
testcase_21 AC 155 ms
13,212 KB
testcase_22 AC 50 ms
11,008 KB
testcase_23 AC 78 ms
10,752 KB
testcase_24 AC 105 ms
10,752 KB
testcase_25 AC 116 ms
10,880 KB
testcase_26 AC 355 ms
10,752 KB
testcase_27 AC 73 ms
10,496 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import defaultdict,deque

n,w=map(int,input().split())
d=defaultdict(int)
ans=0
now=0
q=deque()
for _ in range(n):
    a=int(input())
    now+=a
    q.append(a)
    d[a]+=1
    while (d[a]>1 or now>w) and q:
        out=q.popleft()
        now-=out
        d[out]-=1
    ans=max(ans,len(q))
print(ans)
0