結果

問題 No.2930 Larger Mex
ユーザー noriaokinoriaoki
提出日時 2024-10-12 17:02:54
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 214 ms / 2,000 ms
コード長 561 bytes
コンパイル時間 277 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 141,316 KB
最終ジャッジ日時 2024-10-12 17:03:39
合計ジャッジ時間 9,248 ms
ジャッジサーバーID
(参考情報)
judge4 / judge
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 32 ms
51,968 KB
testcase_01 AC 31 ms
51,840 KB
testcase_02 AC 31 ms
52,352 KB
testcase_03 AC 47 ms
64,896 KB
testcase_04 AC 45 ms
64,640 KB
testcase_05 AC 46 ms
64,896 KB
testcase_06 AC 47 ms
64,128 KB
testcase_07 AC 48 ms
64,768 KB
testcase_08 AC 115 ms
108,792 KB
testcase_09 AC 107 ms
107,136 KB
testcase_10 AC 136 ms
108,544 KB
testcase_11 AC 103 ms
115,072 KB
testcase_12 AC 127 ms
117,376 KB
testcase_13 AC 120 ms
109,824 KB
testcase_14 AC 136 ms
121,752 KB
testcase_15 AC 115 ms
102,912 KB
testcase_16 AC 113 ms
100,352 KB
testcase_17 AC 127 ms
106,892 KB
testcase_18 AC 112 ms
102,400 KB
testcase_19 AC 130 ms
111,812 KB
testcase_20 AC 151 ms
109,544 KB
testcase_21 AC 135 ms
108,160 KB
testcase_22 AC 143 ms
125,032 KB
testcase_23 AC 143 ms
106,752 KB
testcase_24 AC 122 ms
106,496 KB
testcase_25 AC 144 ms
135,168 KB
testcase_26 AC 116 ms
125,500 KB
testcase_27 AC 99 ms
114,788 KB
testcase_28 AC 112 ms
119,936 KB
testcase_29 AC 108 ms
119,808 KB
testcase_30 AC 102 ms
113,024 KB
testcase_31 AC 96 ms
111,744 KB
testcase_32 AC 105 ms
113,056 KB
testcase_33 AC 107 ms
110,592 KB
testcase_34 AC 127 ms
109,568 KB
testcase_35 AC 105 ms
113,792 KB
testcase_36 AC 147 ms
107,520 KB
testcase_37 AC 135 ms
113,408 KB
testcase_38 AC 214 ms
118,016 KB
testcase_39 AC 157 ms
110,208 KB
testcase_40 AC 159 ms
110,336 KB
testcase_41 AC 124 ms
106,624 KB
testcase_42 AC 118 ms
124,288 KB
testcase_43 AC 113 ms
119,424 KB
testcase_44 AC 108 ms
119,944 KB
testcase_45 AC 110 ms
119,936 KB
testcase_46 AC 98 ms
106,280 KB
testcase_47 AC 96 ms
106,316 KB
testcase_48 AC 99 ms
96,640 KB
testcase_49 AC 95 ms
106,476 KB
testcase_50 AC 135 ms
105,344 KB
testcase_51 AC 142 ms
122,880 KB
testcase_52 AC 149 ms
141,316 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n, m = map(int, input().split())
a = list(map(int, input().split()))
if m==0:
    for i in range(n):
        print(n-i)
    exit()
tmp = [0]*(n+1)
cnt = [0]*(m+2)

d = set()
r = 0
for i in range(n):
    while len(d) < m and r < n:
        if a[r] < m:
            cnt[a[r]] += 1
            d.add(a[r])
        r += 1
    if len(d) == m:
        tmp[r-i-1] += 1
        tmp[n-i] -= 1
    if a[i] < m:
        cnt[a[i]] -= 1
        if cnt[a[i]] == 0:
            d.discard(a[i])

import itertools
acc = list(itertools.accumulate(tmp))
print(*acc[:-1], sep='\n')
0