結果

問題 No.1148 土偶Ⅲ
ユーザー titiatitia
提出日時 2023-10-24 05:50:01
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 418 ms / 2,000 ms
コード長 307 bytes
コンパイル時間 283 ms
コンパイル使用メモリ 12,416 KB
実行使用メモリ 13,824 KB
最終ジャッジ日時 2024-09-22 22:39:51
合計ジャッジ時間 5,327 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
10,496 KB
testcase_01 AC 30 ms
10,624 KB
testcase_02 AC 30 ms
10,496 KB
testcase_03 AC 29 ms
10,624 KB
testcase_04 AC 31 ms
10,496 KB
testcase_05 AC 150 ms
11,776 KB
testcase_06 AC 347 ms
13,824 KB
testcase_07 AC 227 ms
12,928 KB
testcase_08 AC 306 ms
13,568 KB
testcase_09 AC 303 ms
13,440 KB
testcase_10 AC 160 ms
11,776 KB
testcase_11 AC 274 ms
13,440 KB
testcase_12 AC 45 ms
10,752 KB
testcase_13 AC 67 ms
10,880 KB
testcase_14 AC 56 ms
10,880 KB
testcase_15 AC 204 ms
12,544 KB
testcase_16 AC 100 ms
11,392 KB
testcase_17 AC 368 ms
13,824 KB
testcase_18 AC 39 ms
10,496 KB
testcase_19 AC 168 ms
11,904 KB
testcase_20 AC 177 ms
12,416 KB
testcase_21 AC 140 ms
11,776 KB
testcase_22 AC 48 ms
10,752 KB
testcase_23 AC 90 ms
10,752 KB
testcase_24 AC 118 ms
10,880 KB
testcase_25 AC 132 ms
10,880 KB
testcase_26 AC 418 ms
11,520 KB
testcase_27 AC 78 ms
10,752 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n,w=map(int,input().split())
A=[int(input()) for i in range(n)]

Q=set()
S=0

r=0
ANS=0
for i in range(n):
    r=max(r,i)
    while r<n and not(A[r] in Q) and S+A[r]<=w:
        Q.add(A[r])
        S+=A[r]
        r+=1

    ANS=max(ANS,len(Q))

    if r>i:
        Q.remove(A[i])
        S-=A[i]

print(ANS)
0