結果

問題 No.1148 土偶Ⅲ
ユーザー 37zigen37zigen
提出日時 2020-08-07 20:27:38
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 292 bytes
コンパイル時間 390 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 18,020 KB
最終ジャッジ日時 2024-09-24 17:48:49
合計ジャッジ時間 5,996 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 31 ms
10,752 KB
testcase_01 AC 30 ms
10,752 KB
testcase_02 AC 31 ms
10,624 KB
testcase_03 AC 30 ms
10,624 KB
testcase_04 AC 31 ms
10,752 KB
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 AC 87 ms
10,880 KB
testcase_24 AC 116 ms
11,008 KB
testcase_25 AC 125 ms
10,880 KB
testcase_26 AC 392 ms
11,520 KB
testcase_27 AC 77 ms
10,752 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n,w=map(int,input().split())
a=[int(input()) for _ in range(n)]
cnt={}
for v in a:
    cnt[v]=0
t=0
ans=0
sum=0
for s in range(n):
    while t<n and sum+a[t]<=w and cnt[a[t]]==0:
        sum+=a[t]
        cnt[a[t]]=1
        t+=1
    ans=max(ans,t-s)
    sum-=a[s]
    cnt[a[s]]-=1
print(ans)
0