結果

問題 No.2930 Larger Mex
ユーザー viral8viral8
提出日時 2024-10-19 18:28:44
言語 Java21
(openjdk 21)
結果
TLE  
実行時間 -
コード長 766 bytes
コンパイル時間 3,230 ms
コンパイル使用メモリ 89,768 KB
実行使用メモリ 82,900 KB
最終ジャッジ日時 2024-10-19 18:30:20
合計ジャッジ時間 89,990 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 134 ms
54,112 KB
testcase_01 AC 143 ms
53,952 KB
testcase_02 AC 134 ms
54,144 KB
testcase_03 AC 251 ms
57,288 KB
testcase_04 AC 257 ms
57,084 KB
testcase_05 AC 261 ms
57,280 KB
testcase_06 AC 274 ms
57,228 KB
testcase_07 AC 258 ms
57,348 KB
testcase_08 AC 1,818 ms
71,548 KB
testcase_09 AC 1,736 ms
72,444 KB
testcase_10 AC 1,915 ms
72,512 KB
testcase_11 AC 1,706 ms
70,832 KB
testcase_12 TLE -
testcase_13 TLE -
testcase_14 TLE -
testcase_15 AC 1,829 ms
72,412 KB
testcase_16 AC 1,774 ms
71,080 KB
testcase_17 AC 1,952 ms
73,000 KB
testcase_18 AC 1,660 ms
70,912 KB
testcase_19 AC 1,927 ms
72,532 KB
testcase_20 AC 1,933 ms
71,612 KB
testcase_21 AC 1,883 ms
72,400 KB
testcase_22 AC 1,956 ms
76,520 KB
testcase_23 AC 1,801 ms
72,480 KB
testcase_24 AC 1,773 ms
72,860 KB
testcase_25 AC 1,910 ms
82,900 KB
testcase_26 AC 1,667 ms
71,840 KB
testcase_27 AC 1,490 ms
70,048 KB
testcase_28 AC 1,654 ms
71,848 KB
testcase_29 AC 1,603 ms
71,312 KB
testcase_30 AC 1,470 ms
69,016 KB
testcase_31 AC 1,296 ms
69,912 KB
testcase_32 AC 1,416 ms
70,452 KB
testcase_33 AC 1,540 ms
70,856 KB
testcase_34 AC 1,865 ms
73,172 KB
testcase_35 AC 1,552 ms
71,308 KB
testcase_36 AC 1,731 ms
71,612 KB
testcase_37 AC 1,989 ms
74,596 KB
testcase_38 TLE -
testcase_39 AC 1,817 ms
72,580 KB
testcase_40 AC 1,772 ms
72,208 KB
testcase_41 AC 1,767 ms
71,720 KB
testcase_42 AC 1,623 ms
72,108 KB
testcase_43 AC 1,603 ms
71,428 KB
testcase_44 AC 1,630 ms
72,112 KB
testcase_45 AC 1,603 ms
71,408 KB
testcase_46 AC 1,801 ms
72,764 KB
testcase_47 AC 1,698 ms
71,140 KB
testcase_48 AC 1,414 ms
70,652 KB
testcase_49 AC 1,819 ms
72,740 KB
testcase_50 AC 1,756 ms
73,164 KB
testcase_51 AC 1,992 ms
76,716 KB
testcase_52 TLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;
import java.util.TreeMap;

class Main{
	public static void main(String[] args){
		Scanner sc = new Scanner(System.in);
		int N = sc.nextInt();
		int M = sc.nextInt();
		int[] A = new int[N];
		for(int i=0;i<N;i++)
			A[i] = sc.nextInt();
		TreeMap<Integer,Integer> map = new TreeMap<>();
		int r = 0;
		int[] ans = new int[N+1];
		for(int l=0;l<N;l++){
			if(l==r){
				if(A[r]<M)
					map.merge(A[r],1,Integer::sum);
				r++;
			}
			while(r<N&&map.size()<M){
				if(A[r]<M)
					map.merge(A[r],1,Integer::sum);
				r++;
			}
			if(map.size()>=M){
				ans[r-l-1]++;
				ans[N-l]--;
			}
			if(A[l]<M)
				map.merge(A[l],-1,(a,b)->a+b==0?null:a+b);
		}
		for(int i=0;i<N;i++){
			System.out.println(ans[i]);
			ans[i+1] += ans[i];
		}
	}
}
0