結果

問題 No.1148 土偶Ⅲ
ユーザー roarisroaris
提出日時 2020-08-05 18:54:05
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 90 ms / 2,000 ms
コード長 432 bytes
コンパイル時間 507 ms
コンパイル使用メモリ 82,252 KB
実行使用メモリ 88,448 KB
最終ジャッジ日時 2024-09-17 08:53:37
合計ジャッジ時間 3,150 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
53,632 KB
testcase_01 AC 38 ms
53,632 KB
testcase_02 AC 38 ms
53,632 KB
testcase_03 AC 42 ms
53,632 KB
testcase_04 AC 38 ms
53,504 KB
testcase_05 AC 74 ms
80,000 KB
testcase_06 AC 90 ms
84,384 KB
testcase_07 AC 73 ms
78,024 KB
testcase_08 AC 84 ms
81,380 KB
testcase_09 AC 86 ms
82,176 KB
testcase_10 AC 73 ms
80,240 KB
testcase_11 AC 75 ms
78,336 KB
testcase_12 AC 44 ms
62,848 KB
testcase_13 AC 61 ms
73,344 KB
testcase_14 AC 54 ms
68,352 KB
testcase_15 AC 67 ms
77,168 KB
testcase_16 AC 55 ms
73,088 KB
testcase_17 AC 88 ms
88,448 KB
testcase_18 AC 52 ms
66,560 KB
testcase_19 AC 74 ms
81,024 KB
testcase_20 AC 64 ms
76,780 KB
testcase_21 AC 58 ms
76,288 KB
testcase_22 AC 53 ms
66,688 KB
testcase_23 AC 49 ms
68,736 KB
testcase_24 AC 53 ms
71,936 KB
testcase_25 AC 53 ms
72,960 KB
testcase_26 AC 72 ms
77,100 KB
testcase_27 AC 50 ms
67,968 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline
from collections import *

n, w = map(int, input().split())
a = [int(input()) for _ in range(n)]
ans = 0
r = 0
now = 0
cnt = defaultdict(int)

for l in range(n):
    while r<n and now+a[r]<=w and cnt[a[r]]==0:
        now += a[r]
        cnt[a[r]] += 1
        r += 1
    
    ans = max(ans, r-l)
    
    if l==r:
        r += 1
    else:
        now -= a[l]
        cnt[a[l]] -= 1

print(ans)
0