結果

問題 No.2930 Larger Mex
ユーザー noriaokinoriaoki
提出日時 2024-10-12 17:00:13
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 563 bytes
コンパイル時間 755 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 141,184 KB
最終ジャッジ日時 2024-10-12 17:02:03
合計ジャッジ時間 8,797 ms
ジャッジサーバーID
(参考情報)
judge5 / judge
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 31 ms
51,968 KB
testcase_01 WA -
testcase_02 AC 30 ms
51,840 KB
testcase_03 AC 57 ms
64,512 KB
testcase_04 AC 45 ms
64,384 KB
testcase_05 AC 46 ms
64,256 KB
testcase_06 AC 44 ms
64,640 KB
testcase_07 AC 44 ms
64,128 KB
testcase_08 AC 111 ms
108,800 KB
testcase_09 AC 109 ms
106,880 KB
testcase_10 AC 133 ms
107,776 KB
testcase_11 AC 99 ms
115,200 KB
testcase_12 AC 126 ms
117,248 KB
testcase_13 AC 112 ms
109,568 KB
testcase_14 AC 127 ms
121,600 KB
testcase_15 AC 113 ms
102,552 KB
testcase_16 AC 105 ms
100,440 KB
testcase_17 AC 122 ms
106,752 KB
testcase_18 AC 109 ms
102,528 KB
testcase_19 AC 124 ms
111,520 KB
testcase_20 AC 142 ms
109,568 KB
testcase_21 AC 131 ms
108,304 KB
testcase_22 AC 131 ms
124,544 KB
testcase_23 AC 174 ms
106,624 KB
testcase_24 AC 119 ms
106,404 KB
testcase_25 AC 166 ms
135,340 KB
testcase_26 AC 107 ms
125,312 KB
testcase_27 AC 94 ms
115,072 KB
testcase_28 AC 110 ms
120,220 KB
testcase_29 AC 102 ms
120,064 KB
testcase_30 AC 98 ms
113,420 KB
testcase_31 AC 91 ms
112,128 KB
testcase_32 AC 100 ms
112,512 KB
testcase_33 AC 100 ms
110,464 KB
testcase_34 AC 125 ms
109,184 KB
testcase_35 AC 98 ms
113,408 KB
testcase_36 AC 138 ms
106,952 KB
testcase_37 AC 115 ms
113,280 KB
testcase_38 AC 214 ms
117,504 KB
testcase_39 AC 142 ms
109,696 KB
testcase_40 AC 128 ms
110,476 KB
testcase_41 AC 118 ms
106,240 KB
testcase_42 AC 133 ms
124,288 KB
testcase_43 AC 125 ms
119,424 KB
testcase_44 AC 102 ms
120,028 KB
testcase_45 AC 101 ms
119,552 KB
testcase_46 WA -
testcase_47 WA -
testcase_48 WA -
testcase_49 WA -
testcase_50 AC 151 ms
105,440 KB
testcase_51 AC 139 ms
122,956 KB
testcase_52 AC 178 ms
141,184 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-1)
    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