結果

問題 No.2930 Larger Mex
ユーザー nouka28nouka28
提出日時 2024-09-07 05:31:20
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 130 ms / 2,000 ms
コード長 480 bytes
コンパイル時間 338 ms
コンパイル使用メモリ 82,560 KB
実行使用メモリ 109,312 KB
最終ジャッジ日時 2024-10-12 06:39:01
合計ジャッジ時間 8,763 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
51,968 KB
testcase_01 AC 35 ms
52,352 KB
testcase_02 AC 38 ms
51,968 KB
testcase_03 AC 57 ms
64,768 KB
testcase_04 AC 51 ms
64,512 KB
testcase_05 AC 52 ms
65,152 KB
testcase_06 AC 52 ms
64,256 KB
testcase_07 AC 51 ms
64,512 KB
testcase_08 AC 107 ms
106,560 KB
testcase_09 AC 104 ms
104,064 KB
testcase_10 AC 111 ms
106,496 KB
testcase_11 AC 97 ms
99,840 KB
testcase_12 AC 114 ms
108,032 KB
testcase_13 AC 111 ms
107,136 KB
testcase_14 AC 115 ms
108,928 KB
testcase_15 AC 129 ms
102,144 KB
testcase_16 AC 124 ms
99,968 KB
testcase_17 AC 120 ms
106,660 KB
testcase_18 AC 108 ms
102,168 KB
testcase_19 AC 122 ms
107,648 KB
testcase_20 AC 123 ms
107,248 KB
testcase_21 AC 118 ms
107,136 KB
testcase_22 AC 113 ms
108,160 KB
testcase_23 AC 114 ms
103,412 KB
testcase_24 AC 115 ms
106,112 KB
testcase_25 AC 115 ms
109,184 KB
testcase_26 AC 98 ms
106,496 KB
testcase_27 AC 94 ms
99,200 KB
testcase_28 AC 98 ms
102,528 KB
testcase_29 AC 96 ms
102,400 KB
testcase_30 AC 100 ms
104,868 KB
testcase_31 AC 91 ms
98,304 KB
testcase_32 AC 100 ms
105,600 KB
testcase_33 AC 101 ms
104,832 KB
testcase_34 AC 124 ms
107,416 KB
testcase_35 AC 91 ms
95,488 KB
testcase_36 AC 121 ms
106,880 KB
testcase_37 AC 108 ms
104,276 KB
testcase_38 AC 125 ms
107,804 KB
testcase_39 AC 122 ms
107,264 KB
testcase_40 AC 130 ms
107,136 KB
testcase_41 AC 112 ms
103,552 KB
testcase_42 AC 100 ms
105,472 KB
testcase_43 AC 96 ms
102,016 KB
testcase_44 AC 98 ms
102,872 KB
testcase_45 AC 97 ms
102,644 KB
testcase_46 AC 110 ms
107,796 KB
testcase_47 AC 111 ms
107,728 KB
testcase_48 AC 93 ms
97,892 KB
testcase_49 AC 111 ms
107,904 KB
testcase_50 AC 123 ms
105,600 KB
testcase_51 AC 120 ms
108,928 KB
testcase_52 AC 114 ms
109,312 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n,m=map(int,input().split())
a=list(map(int,input().split()))
val,r,cnt,res=0,0,[0]*m,[0]*(n+2)

for i in range(n):
    r=max(r,i)
    while r<n and val<m:
        if a[r]<m:
            if cnt[a[r]]==0:
                val+=1
            cnt[a[r]]+=1
        r+=1
    
    if val==m:
        res[r-i]+=1
        res[n+1-i]-=1
    
    if i<r and a[i]<m:
        if cnt[a[i]]==1:
            val-=1
        cnt[a[i]]-=1

for i in range(n):
    res[i+1]+=res[i]
    print(res[i+1])
0