結果

問題 No.2930 Larger Mex
ユーザー titiatitia
提出日時 2024-11-20 04:32:03
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 390 ms / 2,000 ms
コード長 657 bytes
コンパイル時間 194 ms
コンパイル使用メモリ 12,416 KB
実行使用メモリ 39,032 KB
最終ジャッジ日時 2024-11-20 04:32:22
合計ジャッジ時間 18,222 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 29 ms
10,752 KB
testcase_01 AC 28 ms
10,752 KB
testcase_02 AC 27 ms
10,624 KB
testcase_03 AC 30 ms
10,752 KB
testcase_04 AC 31 ms
10,624 KB
testcase_05 AC 29 ms
10,624 KB
testcase_06 AC 29 ms
10,624 KB
testcase_07 AC 30 ms
10,624 KB
testcase_08 AC 316 ms
31,448 KB
testcase_09 AC 302 ms
30,284 KB
testcase_10 AC 357 ms
32,300 KB
testcase_11 AC 273 ms
27,340 KB
testcase_12 AC 351 ms
34,032 KB
testcase_13 AC 369 ms
33,644 KB
testcase_14 AC 354 ms
33,992 KB
testcase_15 AC 351 ms
31,720 KB
testcase_16 AC 306 ms
33,504 KB
testcase_17 AC 374 ms
39,032 KB
testcase_18 AC 324 ms
33,760 KB
testcase_19 AC 355 ms
35,160 KB
testcase_20 AC 387 ms
36,400 KB
testcase_21 AC 379 ms
37,788 KB
testcase_22 AC 362 ms
33,512 KB
testcase_23 AC 334 ms
32,508 KB
testcase_24 AC 365 ms
37,692 KB
testcase_25 AC 374 ms
33,484 KB
testcase_26 AC 337 ms
27,140 KB
testcase_27 AC 246 ms
24,196 KB
testcase_28 AC 287 ms
26,164 KB
testcase_29 AC 285 ms
26,284 KB
testcase_30 AC 238 ms
30,496 KB
testcase_31 AC 189 ms
27,236 KB
testcase_32 AC 232 ms
31,236 KB
testcase_33 AC 239 ms
31,908 KB
testcase_34 AC 334 ms
33,912 KB
testcase_35 AC 234 ms
24,940 KB
testcase_36 AC 291 ms
35,524 KB
testcase_37 AC 323 ms
32,132 KB
testcase_38 AC 388 ms
36,952 KB
testcase_39 AC 315 ms
38,264 KB
testcase_40 AC 331 ms
38,280 KB
testcase_41 AC 332 ms
34,784 KB
testcase_42 AC 299 ms
26,716 KB
testcase_43 AC 290 ms
26,588 KB
testcase_44 AC 308 ms
26,444 KB
testcase_45 AC 319 ms
26,172 KB
testcase_46 AC 219 ms
28,424 KB
testcase_47 AC 219 ms
29,556 KB
testcase_48 AC 164 ms
24,008 KB
testcase_49 AC 223 ms
29,048 KB
testcase_50 AC 366 ms
34,028 KB
testcase_51 AC 334 ms
34,048 KB
testcase_52 AC 390 ms
34,076 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline

N,M=map(int,input().split())
A=list(map(int,input().split()))

if M==0:
    for i in range(N,0,-1):
        print(i)
    exit()

COUNT=[0]*N
need=0

ANS=[0]*(N+5)

ind=0
for i in range(N):
    while need<M and ind<N:
        if A[ind]<M:
            COUNT[A[ind]]+=1
            if COUNT[A[ind]]==1:
                need+=1
        ind+=1

    #print(ind)

    if need==M:
        ANS[ind-i]+=1
        ANS[N-i+1]-=1

    #print(ANS)

    if A[i]<M:
        COUNT[A[i]]-=1
        if COUNT[A[i]]==0:
            need-=1

for i in range(1,N+5):
    ANS[i]+=ANS[i-1]

print("\n".join(map(str,ANS[1:N+1])))

    
    



0