結果

問題 No.2930 Larger Mex
ユーザー こめだわらこめだわら
提出日時 2024-10-12 15:55:28
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 174 ms / 2,000 ms
コード長 629 bytes
コンパイル時間 392 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 142,720 KB
最終ジャッジ日時 2024-10-12 15:55:41
合計ジャッジ時間 9,744 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
51,968 KB
testcase_01 AC 38 ms
51,968 KB
testcase_02 AC 37 ms
52,480 KB
testcase_03 AC 61 ms
65,536 KB
testcase_04 AC 54 ms
64,512 KB
testcase_05 AC 55 ms
64,384 KB
testcase_06 AC 56 ms
64,512 KB
testcase_07 AC 56 ms
64,256 KB
testcase_08 AC 118 ms
108,032 KB
testcase_09 AC 116 ms
105,492 KB
testcase_10 AC 117 ms
108,288 KB
testcase_11 AC 111 ms
101,324 KB
testcase_12 AC 137 ms
125,824 KB
testcase_13 AC 123 ms
112,896 KB
testcase_14 AC 149 ms
141,696 KB
testcase_15 AC 130 ms
103,936 KB
testcase_16 AC 126 ms
101,376 KB
testcase_17 AC 135 ms
106,880 KB
testcase_18 AC 128 ms
103,552 KB
testcase_19 AC 134 ms
111,616 KB
testcase_20 AC 132 ms
109,312 KB
testcase_21 AC 129 ms
108,208 KB
testcase_22 AC 142 ms
126,080 KB
testcase_23 AC 125 ms
107,904 KB
testcase_24 AC 124 ms
108,032 KB
testcase_25 AC 159 ms
136,576 KB
testcase_26 AC 132 ms
123,776 KB
testcase_27 AC 113 ms
105,600 KB
testcase_28 AC 122 ms
114,304 KB
testcase_29 AC 124 ms
112,256 KB
testcase_30 AC 110 ms
108,084 KB
testcase_31 AC 103 ms
104,660 KB
testcase_32 AC 122 ms
120,960 KB
testcase_33 AC 113 ms
109,952 KB
testcase_34 AC 145 ms
109,184 KB
testcase_35 AC 116 ms
105,316 KB
testcase_36 AC 127 ms
107,220 KB
testcase_37 AC 132 ms
117,504 KB
testcase_38 AC 144 ms
117,888 KB
testcase_39 AC 134 ms
109,824 KB
testcase_40 AC 136 ms
110,452 KB
testcase_41 AC 132 ms
107,776 KB
testcase_42 AC 111 ms
108,032 KB
testcase_43 AC 105 ms
103,680 KB
testcase_44 AC 113 ms
112,896 KB
testcase_45 AC 112 ms
111,616 KB
testcase_46 AC 109 ms
106,228 KB
testcase_47 AC 108 ms
106,240 KB
testcase_48 AC 92 ms
96,384 KB
testcase_49 AC 119 ms
106,240 KB
testcase_50 AC 131 ms
105,344 KB
testcase_51 AC 140 ms
123,136 KB
testcase_52 AC 174 ms
142,720 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N,M=map(int,input().split())
A=list(map(int,input().split()))
C=[0]*M
S=set(range(M))
if M==0:
    for i in range(N):
        print(N-i)
    exit()

L=[10**9]*N
j=0
for i in range(N):
    while j<N and len(S)>0:
        if A[j]<M:
            C[A[j]]+=1
            if C[A[j]]==1:
                S.remove(A[j])
        j+=1
    if len(S)>0:
        break
    L[i]=j
    if A[i]<M:
        C[A[i]]-=1
        if C[A[i]]==0:
            S.add(A[i])

B=[0]*(N+2)
for i in range(N):
    j=L[i]
    if j>=10**8:
        continue
    B[j-i]+=1
    B[N+1-i]-=1

for i in range(N):
    B[i+1]+=B[i]

for i in range(N):
    print(B[i+1])
0