結果

問題 No.2930 Larger Mex
ユーザー sasa8uyauyasasa8uyauya
提出日時 2024-10-12 16:52:37
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 497 bytes
コンパイル時間 200 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 115,968 KB
最終ジャッジ日時 2024-10-12 16:52:48
合計ジャッジ時間 10,141 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 39 ms
51,712 KB
testcase_02 AC 40 ms
51,968 KB
testcase_03 AC 57 ms
65,664 KB
testcase_04 AC 57 ms
64,512 KB
testcase_05 AC 59 ms
65,408 KB
testcase_06 AC 57 ms
64,640 KB
testcase_07 AC 57 ms
65,024 KB
testcase_08 AC 126 ms
112,384 KB
testcase_09 AC 121 ms
109,056 KB
testcase_10 AC 145 ms
112,512 KB
testcase_11 AC 113 ms
105,132 KB
testcase_12 AC 134 ms
114,304 KB
testcase_13 AC 134 ms
113,420 KB
testcase_14 AC 135 ms
109,184 KB
testcase_15 AC 132 ms
102,584 KB
testcase_16 AC 124 ms
100,480 KB
testcase_17 AC 138 ms
106,752 KB
testcase_18 AC 135 ms
102,528 KB
testcase_19 AC 141 ms
107,592 KB
testcase_20 AC 142 ms
107,264 KB
testcase_21 AC 141 ms
107,008 KB
testcase_22 AC 133 ms
108,160 KB
testcase_23 AC 130 ms
104,012 KB
testcase_24 AC 139 ms
106,496 KB
testcase_25 AC 136 ms
108,928 KB
testcase_26 AC 121 ms
112,256 KB
testcase_27 AC 108 ms
104,104 KB
testcase_28 AC 112 ms
108,544 KB
testcase_29 AC 114 ms
108,032 KB
testcase_30 AC 120 ms
109,772 KB
testcase_31 AC 109 ms
102,656 KB
testcase_32 AC 122 ms
110,336 KB
testcase_33 AC 127 ms
110,592 KB
testcase_34 AC 145 ms
107,264 KB
testcase_35 AC 113 ms
99,456 KB
testcase_36 AC 143 ms
107,392 KB
testcase_37 AC 129 ms
110,080 KB
testcase_38 AC 151 ms
108,160 KB
testcase_39 AC 145 ms
107,392 KB
testcase_40 AC 148 ms
107,392 KB
testcase_41 AC 133 ms
103,816 KB
testcase_42 AC 118 ms
111,232 KB
testcase_43 AC 115 ms
107,988 KB
testcase_44 AC 115 ms
108,416 KB
testcase_45 AC 113 ms
108,544 KB
testcase_46 AC 131 ms
111,744 KB
testcase_47 AC 135 ms
111,576 KB
testcase_48 AC 113 ms
104,192 KB
testcase_49 AC 134 ms
111,744 KB
testcase_50 AC 150 ms
105,088 KB
testcase_51 AC 140 ms
108,800 KB
testcase_52 AC 135 ms
115,968 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:
    r+=1
    p+=c[a[0]]==0 and a[0]>=0
    c[a[0]]+=1
for i in range(1,n+1):
  g[i]+=g[i-1]
print(*g[1:n+1],sep="\n")
0