結果

問題 No.182 新規性の虜
ユーザー tatt61880tatt61880
提出日時 2020-07-12 01:35:54
言語 Kuin
(KuinC++ v.2021.9.17)
結果
AC  
実行時間 100 ms / 5,000 ms
コード長 466 bytes
コンパイル時間 2,301 ms
コンパイル使用メモリ 148,468 KB
実行使用メモリ 8,576 KB
最終ジャッジ日時 2024-09-16 11:14:51
合計ジャッジ時間 4,374 ms
ジャッジサーバーID
(参考情報)
judge6 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 1 ms
5,376 KB
testcase_04 AC 1 ms
5,376 KB
testcase_05 AC 2 ms
5,376 KB
testcase_06 AC 1 ms
5,376 KB
testcase_07 AC 2 ms
5,376 KB
testcase_08 AC 57 ms
6,272 KB
testcase_09 AC 100 ms
7,936 KB
testcase_10 AC 84 ms
7,296 KB
testcase_11 AC 68 ms
6,656 KB
testcase_12 AC 28 ms
5,376 KB
testcase_13 AC 2 ms
5,376 KB
testcase_14 AC 2 ms
5,376 KB
testcase_15 AC 2 ms
5,376 KB
testcase_16 AC 2 ms
5,376 KB
testcase_17 AC 2 ms
5,376 KB
testcase_18 AC 53 ms
5,376 KB
testcase_19 AC 39 ms
5,376 KB
testcase_20 AC 26 ms
5,376 KB
testcase_21 AC 60 ms
5,376 KB
testcase_22 AC 31 ms
5,376 KB
testcase_23 AC 2 ms
5,376 KB
testcase_24 AC 84 ms
8,576 KB
testcase_25 AC 31 ms
5,376 KB
testcase_26 AC 12 ms
5,376 KB
testcase_27 AC 1 ms
5,376 KB
evil01.txt AC 93 ms
8,576 KB
evil02.txt AC 94 ms
8,576 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

func main()
	var n: int :: cui@inputInt()
	var dic: dict<int, int> :: #dict<int, int>
	for i(0, n - 1)
		var a: int :: cui@inputInt()
		var cnt: int :: 0
		if(dic.exist(a))
			do cnt :: dic.get(a, &)
		end if
		do dic.add(a, cnt + 1)
	end for
	var ans: lib@Int :: #lib@Int
	do dic.forEach(f, ans)
	do cui@print("\{ans}\n")
	
	func f(key: int, value: int, data: kuin@Class): bool
		if(value = 1)
			do(data $ lib@Int).value :+ 1
		end if
		ret true
	end func
end func
0