結果

問題 No.182 新規性の虜
ユーザー tatt61880tatt61880
提出日時 2020-07-01 03:52:20
言語 Kuin
(KuinC++ v.2021.9.17)
結果
AC  
実行時間 103 ms / 5,000 ms
コード長 472 bytes
コンパイル時間 2,487 ms
コンパイル使用メモリ 146,232 KB
実行使用メモリ 8,704 KB
最終ジャッジ日時 2024-09-16 11:12:32
合計ジャッジ時間 4,186 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
6,812 KB
testcase_01 AC 2 ms
6,816 KB
testcase_02 AC 1 ms
6,816 KB
testcase_03 AC 2 ms
6,940 KB
testcase_04 AC 1 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 57 ms
6,940 KB
testcase_09 AC 103 ms
7,936 KB
testcase_10 AC 87 ms
7,296 KB
testcase_11 AC 69 ms
6,940 KB
testcase_12 AC 27 ms
6,940 KB
testcase_13 AC 2 ms
6,940 KB
testcase_14 AC 2 ms
6,944 KB
testcase_15 AC 2 ms
6,940 KB
testcase_16 AC 1 ms
6,940 KB
testcase_17 AC 2 ms
6,940 KB
testcase_18 AC 51 ms
6,940 KB
testcase_19 AC 38 ms
6,940 KB
testcase_20 AC 24 ms
6,944 KB
testcase_21 AC 60 ms
6,940 KB
testcase_22 AC 31 ms
6,944 KB
testcase_23 AC 2 ms
6,944 KB
testcase_24 AC 83 ms
8,704 KB
testcase_25 AC 30 ms
6,944 KB
testcase_26 AC 12 ms
6,940 KB
testcase_27 AC 2 ms
6,940 KB
evil01.txt AC 92 ms
8,576 KB
evil02.txt AC 92 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.value}\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