結果

問題 No.2930 Larger Mex
ユーザー sasa8uyauyasasa8uyauya
提出日時 2024-10-12 16:55:59
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 143 ms / 2,000 ms
コード長 507 bytes
コンパイル時間 153 ms
コンパイル使用メモリ 82,296 KB
実行使用メモリ 115,584 KB
最終ジャッジ日時 2024-10-12 16:56:22
合計ジャッジ時間 8,416 ms
ジャッジサーバーID
(参考情報)
judge / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 31 ms
51,840 KB
testcase_01 AC 30 ms
51,840 KB
testcase_02 AC 33 ms
51,968 KB
testcase_03 AC 46 ms
64,896 KB
testcase_04 AC 44 ms
64,896 KB
testcase_05 AC 50 ms
64,768 KB
testcase_06 AC 59 ms
64,384 KB
testcase_07 AC 46 ms
64,640 KB
testcase_08 AC 106 ms
112,512 KB
testcase_09 AC 101 ms
108,928 KB
testcase_10 AC 107 ms
112,384 KB
testcase_11 AC 93 ms
105,088 KB
testcase_12 AC 108 ms
114,432 KB
testcase_13 AC 109 ms
113,664 KB
testcase_14 AC 110 ms
109,184 KB
testcase_15 AC 107 ms
102,400 KB
testcase_16 AC 124 ms
100,736 KB
testcase_17 AC 113 ms
106,936 KB
testcase_18 AC 102 ms
102,784 KB
testcase_19 AC 115 ms
107,900 KB
testcase_20 AC 116 ms
107,560 KB
testcase_21 AC 114 ms
107,392 KB
testcase_22 AC 108 ms
108,032 KB
testcase_23 AC 108 ms
103,808 KB
testcase_24 AC 120 ms
106,240 KB
testcase_25 AC 108 ms
108,672 KB
testcase_26 AC 96 ms
112,128 KB
testcase_27 AC 89 ms
104,244 KB
testcase_28 AC 94 ms
108,160 KB
testcase_29 AC 94 ms
107,904 KB
testcase_30 AC 99 ms
109,952 KB
testcase_31 AC 90 ms
103,168 KB
testcase_32 AC 101 ms
110,592 KB
testcase_33 AC 100 ms
110,464 KB
testcase_34 AC 143 ms
107,264 KB
testcase_35 AC 90 ms
99,328 KB
testcase_36 AC 118 ms
107,136 KB
testcase_37 AC 105 ms
110,336 KB
testcase_38 AC 123 ms
107,648 KB
testcase_39 AC 122 ms
107,904 KB
testcase_40 AC 121 ms
107,136 KB
testcase_41 AC 107 ms
103,472 KB
testcase_42 AC 105 ms
111,616 KB
testcase_43 AC 110 ms
107,904 KB
testcase_44 AC 94 ms
108,424 KB
testcase_45 AC 96 ms
108,160 KB
testcase_46 AC 111 ms
111,232 KB
testcase_47 AC 109 ms
111,744 KB
testcase_48 AC 94 ms
103,784 KB
testcase_49 AC 111 ms
111,488 KB
testcase_50 AC 121 ms
105,216 KB
testcase_51 AC 117 ms
108,416 KB
testcase_52 AC 109 ms
115,584 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n,m=map(int,input().split())
a=list(map(int,input().split()))
for i in range(n):
  if a[i]>=m:
    a[i]=-1
c=[0]*(m+1)
g=[0]*(n+2)
r=0
c[a[0]]+=1
p=0
p+=c[a[0]]!=0 and a[0]>=0
for l in range(n):
  r=max(r,l)
  while r+1<n and p<m:
    r+=1
    p+=c[a[r]]==0 and a[r]>=0
    c[a[r]]+=1
  if p==m:
    g[r-l+1]+=1
    g[n-l+1]-=1
  p-=c[a[l]]==1 and a[l]>=0
  c[a[l]]-=1
  if r==l and l+1<n:
    r+=1
    p+=c[a[r]]==0 and a[r]>=0
    c[a[r]]+=1
for i in range(1,n+1):
  g[i]+=g[i-1]
print(*g[1:n+1],sep="\n")
0