結果

問題 No.2930 Larger Mex
ユーザー loop0919loop0919
提出日時 2024-09-09 16:17:15
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 277 ms / 2,000 ms
コード長 672 bytes
コンパイル時間 318 ms
コンパイル使用メモリ 82,416 KB
実行使用メモリ 164,904 KB
最終ジャッジ日時 2024-10-12 06:39:12
合計ジャッジ時間 11,309 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
54,272 KB
testcase_01 AC 43 ms
53,488 KB
testcase_02 AC 44 ms
53,888 KB
testcase_03 AC 62 ms
66,432 KB
testcase_04 AC 61 ms
66,688 KB
testcase_05 AC 63 ms
66,800 KB
testcase_06 AC 67 ms
66,816 KB
testcase_07 AC 62 ms
66,688 KB
testcase_08 AC 158 ms
107,120 KB
testcase_09 AC 153 ms
104,320 KB
testcase_10 AC 150 ms
107,172 KB
testcase_11 AC 130 ms
99,840 KB
testcase_12 AC 216 ms
124,672 KB
testcase_13 AC 173 ms
111,744 KB
testcase_14 AC 263 ms
140,416 KB
testcase_15 AC 142 ms
102,784 KB
testcase_16 AC 149 ms
100,864 KB
testcase_17 AC 153 ms
107,264 KB
testcase_18 AC 144 ms
102,912 KB
testcase_19 AC 193 ms
111,872 KB
testcase_20 AC 175 ms
110,192 KB
testcase_21 AC 169 ms
108,416 KB
testcase_22 AC 244 ms
131,020 KB
testcase_23 AC 177 ms
107,136 KB
testcase_24 AC 149 ms
106,624 KB
testcase_25 AC 264 ms
152,592 KB
testcase_26 AC 145 ms
122,368 KB
testcase_27 AC 127 ms
104,576 KB
testcase_28 AC 136 ms
112,872 KB
testcase_29 AC 131 ms
110,464 KB
testcase_30 AC 135 ms
106,880 KB
testcase_31 AC 119 ms
103,292 KB
testcase_32 AC 139 ms
119,552 KB
testcase_33 AC 134 ms
108,800 KB
testcase_34 AC 212 ms
109,824 KB
testcase_35 AC 155 ms
112,000 KB
testcase_36 AC 210 ms
109,600 KB
testcase_37 AC 202 ms
116,224 KB
testcase_38 AC 199 ms
118,740 KB
testcase_39 AC 183 ms
115,248 KB
testcase_40 AC 183 ms
113,420 KB
testcase_41 AC 159 ms
106,752 KB
testcase_42 AC 138 ms
106,240 KB
testcase_43 AC 128 ms
102,272 KB
testcase_44 AC 134 ms
111,360 KB
testcase_45 AC 135 ms
110,336 KB
testcase_46 AC 75 ms
76,416 KB
testcase_47 AC 74 ms
76,288 KB
testcase_48 AC 70 ms
76,160 KB
testcase_49 AC 75 ms
76,288 KB
testcase_50 AC 148 ms
105,728 KB
testcase_51 AC 247 ms
145,320 KB
testcase_52 AC 277 ms
164,904 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import Counter
from itertools import accumulate


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

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

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

not_exist = set([*range(0, M)])
cntr = Counter()

imos = [0] * (N + 2)

r = 0

for l in range(N):
    while r < N and len(not_exist) >= 1:
        cntr[A[r]] += 1
        not_exist.discard(A[r])
        r += 1

    if len(not_exist) == 0:
        imos[r - l] += 1
        imos[N - l + 1] -= 1

    cntr[A[l]] -= 1
    if cntr[A[l]] == 0 and A[l] < M:
        not_exist.add(A[l])

imos = list(accumulate(imos))

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