結果

問題 No.2930 Larger Mex
ユーザー FuyuruFuyuru
提出日時 2024-10-12 16:03:22
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 138 ms / 2,000 ms
コード長 581 bytes
コンパイル時間 306 ms
コンパイル使用メモリ 82,164 KB
実行使用メモリ 114,364 KB
最終ジャッジ日時 2024-10-12 16:03:32
合計ジャッジ時間 9,325 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,072 KB
testcase_01 AC 37 ms
53,032 KB
testcase_02 AC 38 ms
52,148 KB
testcase_03 AC 55 ms
64,860 KB
testcase_04 AC 51 ms
65,152 KB
testcase_05 AC 51 ms
63,804 KB
testcase_06 AC 50 ms
64,144 KB
testcase_07 AC 51 ms
63,288 KB
testcase_08 AC 117 ms
111,376 KB
testcase_09 AC 110 ms
107,284 KB
testcase_10 AC 115 ms
111,496 KB
testcase_11 AC 103 ms
103,748 KB
testcase_12 AC 119 ms
113,524 KB
testcase_13 AC 118 ms
112,728 KB
testcase_14 AC 132 ms
114,364 KB
testcase_15 AC 122 ms
104,676 KB
testcase_16 AC 115 ms
102,556 KB
testcase_17 AC 124 ms
106,668 KB
testcase_18 AC 116 ms
105,316 KB
testcase_19 AC 125 ms
107,504 KB
testcase_20 AC 128 ms
107,512 KB
testcase_21 AC 125 ms
107,136 KB
testcase_22 AC 138 ms
113,388 KB
testcase_23 AC 119 ms
105,392 KB
testcase_24 AC 127 ms
107,828 KB
testcase_25 AC 125 ms
113,536 KB
testcase_26 AC 110 ms
110,720 KB
testcase_27 AC 98 ms
102,992 KB
testcase_28 AC 105 ms
107,108 KB
testcase_29 AC 104 ms
106,448 KB
testcase_30 AC 124 ms
108,400 KB
testcase_31 AC 97 ms
101,760 KB
testcase_32 AC 107 ms
109,568 KB
testcase_33 AC 107 ms
109,404 KB
testcase_34 AC 126 ms
107,680 KB
testcase_35 AC 93 ms
98,176 KB
testcase_36 AC 123 ms
106,880 KB
testcase_37 AC 112 ms
109,184 KB
testcase_38 AC 138 ms
107,764 KB
testcase_39 AC 124 ms
107,264 KB
testcase_40 AC 130 ms
107,388 KB
testcase_41 AC 114 ms
108,484 KB
testcase_42 AC 106 ms
110,080 KB
testcase_43 AC 102 ms
106,316 KB
testcase_44 AC 104 ms
107,364 KB
testcase_45 AC 103 ms
106,976 KB
testcase_46 AC 121 ms
110,984 KB
testcase_47 AC 119 ms
111,104 KB
testcase_48 AC 102 ms
103,052 KB
testcase_49 AC 122 ms
110,880 KB
testcase_50 AC 130 ms
105,352 KB
testcase_51 AC 123 ms
113,528 KB
testcase_52 AC 119 ms
114,304 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N,M = map(int,input().split())
A = list(map(int,input().split()))
ans = [0]*N
data = [0]*M
cnt = 0
r = 0
for l in range(N):
    while r < N and cnt < M:
        if A[r] < M:
            if data[A[r]] == 0:
                cnt += 1
            data[A[r]] += 1
        r += 1

    if cnt < M:
        break
    ans[max(0,r-l-1)] += 1
    if N-l < N:
        ans[N-l] -= 1

    if r == l:
        r += 1
    else:
        if A[l] < M:
            data[A[l]] -= 1
            if data[A[l]] == 0:
                cnt -= 1
for i in range(N-1):
    ans[i+1] += ans[i]
print(*ans,sep='\n')
0