結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
10,880 KB
testcase_01 AC 29 ms
10,752 KB
testcase_02 AC 26 ms
10,752 KB
testcase_03 AC 25 ms
10,880 KB
testcase_04 AC 27 ms
10,880 KB
testcase_05 AC 131 ms
13,208 KB
testcase_06 AC 345 ms
16,048 KB
testcase_07 AC 232 ms
15,920 KB
testcase_08 AC 312 ms
15,924 KB
testcase_09 AC 305 ms
15,920 KB
testcase_10 AC 145 ms
13,340 KB
testcase_11 AC 291 ms
16,100 KB
testcase_12 AC 43 ms
11,008 KB
testcase_13 AC 59 ms
11,520 KB
testcase_14 AC 51 ms
11,264 KB
testcase_15 AC 221 ms
16,044 KB
testcase_16 AC 96 ms
11,932 KB
testcase_17 AC 340 ms
16,044 KB
testcase_18 AC 37 ms
10,880 KB
testcase_19 AC 150 ms
13,464 KB
testcase_20 AC 186 ms
13,360 KB
testcase_21 AC 146 ms
13,340 KB
testcase_22 AC 45 ms
11,136 KB
testcase_23 AC 76 ms
10,752 KB
testcase_24 AC 101 ms
10,752 KB
testcase_25 AC 119 ms
10,752 KB
testcase_26 AC 335 ms
10,752 KB
testcase_27 AC 66 ms
10,752 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