結果

問題 No.1148 土偶Ⅲ
ユーザー 37zigen37zigen
提出日時 2020-08-07 20:34:04
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 400 ms / 2,000 ms
コード長 289 bytes
コンパイル時間 175 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 17,892 KB
最終ジャッジ日時 2024-09-24 17:57:22
合計ジャッジ時間 5,541 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
10,752 KB
testcase_01 AC 29 ms
10,880 KB
testcase_02 AC 29 ms
10,752 KB
testcase_03 AC 29 ms
10,752 KB
testcase_04 AC 30 ms
10,752 KB
testcase_05 AC 145 ms
13,744 KB
testcase_06 AC 377 ms
17,892 KB
testcase_07 AC 248 ms
16,792 KB
testcase_08 AC 327 ms
17,596 KB
testcase_09 AC 326 ms
17,560 KB
testcase_10 AC 160 ms
13,860 KB
testcase_11 AC 317 ms
17,564 KB
testcase_12 AC 47 ms
11,136 KB
testcase_13 AC 65 ms
11,648 KB
testcase_14 AC 56 ms
11,520 KB
testcase_15 AC 233 ms
16,676 KB
testcase_16 AC 109 ms
12,288 KB
testcase_17 AC 365 ms
17,760 KB
testcase_18 AC 39 ms
10,880 KB
testcase_19 AC 165 ms
14,048 KB
testcase_20 AC 199 ms
14,312 KB
testcase_21 AC 154 ms
13,868 KB
testcase_22 AC 49 ms
11,136 KB
testcase_23 AC 86 ms
10,880 KB
testcase_24 AC 118 ms
11,008 KB
testcase_25 AC 128 ms
11,008 KB
testcase_26 AC 400 ms
11,648 KB
testcase_27 AC 77 ms
10,880 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
sw=0
for s in range(n):
    while t<n and sw+a[t]<=w and cnt[a[t]]<=0:
        sw+=a[t]
        cnt[a[t]]+=1
        t+=1
    ans=max(ans,t-s)
    sw-=a[s]
    cnt[a[s]]-=1
print(ans)
0