結果

問題 No.2930 Larger Mex
ユーザー detteiuudetteiuu
提出日時 2024-10-12 16:41:42
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 137 ms / 2,000 ms
コード長 639 bytes
コンパイル時間 172 ms
コンパイル使用メモリ 82,492 KB
実行使用メモリ 110,604 KB
最終ジャッジ日時 2024-10-12 16:41:52
合計ジャッジ時間 8,245 ms
ジャッジサーバーID
(参考情報)
judge / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
53,504 KB
testcase_01 AC 32 ms
51,712 KB
testcase_02 AC 32 ms
54,016 KB
testcase_03 AC 49 ms
66,176 KB
testcase_04 AC 48 ms
66,304 KB
testcase_05 AC 54 ms
67,968 KB
testcase_06 AC 48 ms
66,048 KB
testcase_07 AC 49 ms
66,176 KB
testcase_08 AC 122 ms
109,184 KB
testcase_09 AC 97 ms
106,240 KB
testcase_10 AC 102 ms
109,440 KB
testcase_11 AC 92 ms
102,400 KB
testcase_12 AC 103 ms
110,336 KB
testcase_13 AC 102 ms
110,336 KB
testcase_14 AC 109 ms
110,428 KB
testcase_15 AC 110 ms
105,308 KB
testcase_16 AC 108 ms
102,528 KB
testcase_17 AC 137 ms
107,904 KB
testcase_18 AC 113 ms
105,088 KB
testcase_19 AC 116 ms
109,120 KB
testcase_20 AC 116 ms
108,928 KB
testcase_21 AC 114 ms
108,800 KB
testcase_22 AC 104 ms
110,604 KB
testcase_23 AC 116 ms
104,704 KB
testcase_24 AC 115 ms
107,392 KB
testcase_25 AC 128 ms
110,592 KB
testcase_26 AC 96 ms
108,032 KB
testcase_27 AC 88 ms
101,376 KB
testcase_28 AC 97 ms
105,032 KB
testcase_29 AC 92 ms
105,212 KB
testcase_30 AC 95 ms
107,264 KB
testcase_31 AC 89 ms
100,608 KB
testcase_32 AC 95 ms
107,392 KB
testcase_33 AC 98 ms
107,776 KB
testcase_34 AC 121 ms
108,928 KB
testcase_35 AC 100 ms
97,408 KB
testcase_36 AC 118 ms
108,416 KB
testcase_37 AC 101 ms
107,136 KB
testcase_38 AC 124 ms
109,056 KB
testcase_39 AC 125 ms
108,288 KB
testcase_40 AC 125 ms
108,544 KB
testcase_41 AC 113 ms
105,088 KB
testcase_42 AC 92 ms
108,376 KB
testcase_43 AC 112 ms
104,960 KB
testcase_44 AC 92 ms
105,256 KB
testcase_45 AC 91 ms
105,216 KB
testcase_46 AC 95 ms
106,496 KB
testcase_47 AC 93 ms
105,856 KB
testcase_48 AC 83 ms
96,256 KB
testcase_49 AC 97 ms
106,496 KB
testcase_50 AC 113 ms
106,752 KB
testcase_51 AC 106 ms
109,568 KB
testcase_52 AC 103 ms
110,464 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

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

right = 0
cnt = 0
C = [0]*(10**5*2+1)
ans = [0]*(N+1)
for left in range(N):
    while right < N and cnt < M:
        C[A[right]] += 1
        if A[right] < M and C[A[right]] == 1:
            cnt += 1
        right += 1
    if cnt >= M:
        ans[right-left-1] += 1
        ans[N-left] -= 1
    if left == right:
        right += 1
    C[A[left]] -= 1
    if A[left] < M and C[A[left]] == 0:
        cnt -= 1

for i in range(1, N+1):
    ans[i] += ans[i-1]

for a in ans[:-1]:
    print(a)
0