結果

問題 No.2930 Larger Mex
ユーザー noriaokinoriaoki
提出日時 2024-10-12 16:59:12
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 500 bytes
コンパイル時間 269 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 141,016 KB
最終ジャッジ日時 2024-10-12 16:59:54
合計ジャッジ時間 10,487 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
51,968 KB
testcase_01 WA -
testcase_02 AC 41 ms
52,096 KB
testcase_03 AC 56 ms
64,384 KB
testcase_04 AC 56 ms
63,872 KB
testcase_05 AC 59 ms
64,640 KB
testcase_06 AC 58 ms
64,000 KB
testcase_07 AC 57 ms
64,128 KB
testcase_08 AC 134 ms
109,184 KB
testcase_09 AC 127 ms
107,204 KB
testcase_10 AC 138 ms
108,160 KB
testcase_11 AC 122 ms
115,200 KB
testcase_12 AC 155 ms
116,992 KB
testcase_13 AC 141 ms
109,824 KB
testcase_14 AC 161 ms
121,600 KB
testcase_15 AC 138 ms
102,272 KB
testcase_16 AC 131 ms
99,968 KB
testcase_17 AC 150 ms
106,712 KB
testcase_18 AC 138 ms
102,336 KB
testcase_19 AC 153 ms
111,360 KB
testcase_20 AC 176 ms
109,696 KB
testcase_21 AC 164 ms
107,904 KB
testcase_22 AC 164 ms
124,532 KB
testcase_23 AC 172 ms
106,624 KB
testcase_24 AC 145 ms
106,228 KB
testcase_25 AC 178 ms
135,288 KB
testcase_26 AC 133 ms
125,164 KB
testcase_27 AC 119 ms
114,560 KB
testcase_28 AC 125 ms
119,928 KB
testcase_29 AC 126 ms
120,064 KB
testcase_30 AC 121 ms
112,896 KB
testcase_31 AC 118 ms
112,000 KB
testcase_32 AC 125 ms
112,896 KB
testcase_33 AC 124 ms
110,464 KB
testcase_34 AC 159 ms
109,184 KB
testcase_35 AC 120 ms
113,792 KB
testcase_36 AC 147 ms
107,136 KB
testcase_37 AC 147 ms
113,536 KB
testcase_38 AC 228 ms
118,016 KB
testcase_39 AC 176 ms
109,824 KB
testcase_40 AC 162 ms
109,952 KB
testcase_41 AC 140 ms
106,112 KB
testcase_42 AC 133 ms
124,688 KB
testcase_43 AC 125 ms
119,296 KB
testcase_44 AC 127 ms
119,936 KB
testcase_45 AC 130 ms
119,936 KB
testcase_46 WA -
testcase_47 WA -
testcase_48 WA -
testcase_49 WA -
testcase_50 AC 151 ms
105,088 KB
testcase_51 AC 164 ms
122,752 KB
testcase_52 AC 177 ms
141,016 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n, m = map(int, input().split())
a = list(map(int, input().split()))

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