結果

問題 No.2334 Distinct Cards
ユーザー tatt61880tatt61880
提出日時 2023-07-11 21:13:00
言語 Kuin
(KuinC++ v.2021.9.17)
結果
AC  
実行時間 116 ms / 2,000 ms
コード長 940 bytes
コンパイル時間 7,381 ms
コンパイル使用メモリ 149,864 KB
実行使用メモリ 13,184 KB
最終ジャッジ日時 2024-09-13 11:09:20
合計ジャッジ時間 9,764 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
6,812 KB
testcase_01 AC 1 ms
6,812 KB
testcase_02 AC 2 ms
6,940 KB
testcase_03 AC 2 ms
6,940 KB
testcase_04 AC 2 ms
6,940 KB
testcase_05 AC 2 ms
6,944 KB
testcase_06 AC 2 ms
6,944 KB
testcase_07 AC 2 ms
6,944 KB
testcase_08 AC 2 ms
6,940 KB
testcase_09 AC 2 ms
6,940 KB
testcase_10 AC 3 ms
6,940 KB
testcase_11 AC 2 ms
6,944 KB
testcase_12 AC 99 ms
9,984 KB
testcase_13 AC 98 ms
10,112 KB
testcase_14 AC 97 ms
9,984 KB
testcase_15 AC 97 ms
9,984 KB
testcase_16 AC 98 ms
9,984 KB
testcase_17 AC 113 ms
13,184 KB
testcase_18 AC 116 ms
13,056 KB
testcase_19 AC 115 ms
13,056 KB
testcase_20 AC 41 ms
6,944 KB
testcase_21 AC 42 ms
6,940 KB
testcase_22 AC 41 ms
6,940 KB
testcase_23 AC 2 ms
6,940 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

func main()
	var n: int :: cui@inputInt()
	var k: int :: cui@inputInt()
	
	var a: []int :: #[n]int
	for i(0, n - 1)
		do a[i] :: cui@inputInt()
	end for
	
	var dic: dict<int, int> :: #dict<int, int>
	for i(0, n - 1)
		var key: int :: a[i]
		var val: int :: dic.get(key, &)
		do dic.add(key, val + 1)
	end for
	
	var values: []int :: getValues(dic)
	do values.sort()
	do values.reverse()
	
	var ans: int :: 0
	for i(0, ^values - 1)
		do ans :+ 1
		do k :- values[i]
		if(k <= 0)
			break i
		end if
	end for
	
	do cui@print("\{ans}\n")
	
	func getValues(dic: dict<int, int>): []int
		var valueList: List :: #List
		do dic.forEach(callback, valueList $ kuin@Class)
		ret valueList.li.toArray()
		
		class List()
			+var li: list<int>
			*func ctor()
				do me.li :: #list<int>
			end func
		end class
		
		func callback(key: int, value: int, data: kuin@Class): bool
			do (data $ List).li.add(value)
			ret true
		end func
	end func
end func
0