結果

問題 No.1148 土偶Ⅲ
ユーザー H20H20
提出日時 2022-01-27 23:55:58
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 135 ms / 2,000 ms
コード長 417 bytes
コンパイル時間 193 ms
コンパイル使用メモリ 82,364 KB
実行使用メモリ 92,168 KB
最終ジャッジ日時 2024-06-07 22:21:01
合計ジャッジ時間 3,644 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
52,864 KB
testcase_01 AC 39 ms
53,120 KB
testcase_02 AC 39 ms
53,504 KB
testcase_03 AC 37 ms
53,504 KB
testcase_04 AC 39 ms
53,632 KB
testcase_05 AC 97 ms
81,024 KB
testcase_06 AC 135 ms
92,168 KB
testcase_07 AC 119 ms
84,976 KB
testcase_08 AC 125 ms
89,616 KB
testcase_09 AC 120 ms
87,952 KB
testcase_10 AC 97 ms
80,768 KB
testcase_11 AC 118 ms
88,076 KB
testcase_12 AC 66 ms
72,832 KB
testcase_13 AC 81 ms
76,800 KB
testcase_14 AC 78 ms
76,800 KB
testcase_15 AC 101 ms
84,096 KB
testcase_16 AC 88 ms
78,336 KB
testcase_17 AC 123 ms
89,504 KB
testcase_18 AC 67 ms
71,552 KB
testcase_19 AC 92 ms
81,792 KB
testcase_20 AC 100 ms
83,840 KB
testcase_21 AC 91 ms
81,024 KB
testcase_22 AC 68 ms
73,856 KB
testcase_23 AC 76 ms
76,672 KB
testcase_24 AC 79 ms
77,440 KB
testcase_25 AC 79 ms
77,312 KB
testcase_26 AC 109 ms
79,696 KB
testcase_27 AC 74 ms
76,544 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import collections

N,W = map(int, input().split())
A = []
for _ in range(N):
    A.append(int(input()))
D = collections.defaultdict(int)
ans = 0
j = 0
s = 0
for i in range(N+1):
    while j<N and s<=W and D[A[j]]==0:
        D[A[j]]=1
        s+=A[j]
        if s<=W:
            ans = max(ans,j-i+1)
        j += 1
    if i==N:
        break
    s -= A[i]
    D[A[i]]=0

if ans<=1:
    print(0)
else:
    print(ans)
0