結果

問題 No.806 木を道に
ユーザー tatt61880tatt61880
提出日時 2021-02-14 20:51:03
言語 Kuin
(KuinC++ v.2021.9.17)
結果
AC  
実行時間 181 ms / 2,000 ms
コード長 320 bytes
コンパイル時間 2,228 ms
コンパイル使用メモリ 147,124 KB
実行使用メモリ 8,576 KB
最終ジャッジ日時 2024-09-16 11:23:24
合計ジャッジ時間 5,729 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 2 ms
5,376 KB
testcase_04 AC 2 ms
5,376 KB
testcase_05 AC 2 ms
5,376 KB
testcase_06 AC 2 ms
5,376 KB
testcase_07 AC 2 ms
5,376 KB
testcase_08 AC 2 ms
5,376 KB
testcase_09 AC 2 ms
5,376 KB
testcase_10 AC 34 ms
5,376 KB
testcase_11 AC 30 ms
5,376 KB
testcase_12 AC 148 ms
7,808 KB
testcase_13 AC 104 ms
6,784 KB
testcase_14 AC 136 ms
7,680 KB
testcase_15 AC 147 ms
7,936 KB
testcase_16 AC 49 ms
5,376 KB
testcase_17 AC 129 ms
7,296 KB
testcase_18 AC 13 ms
5,376 KB
testcase_19 AC 36 ms
5,376 KB
testcase_20 AC 127 ms
7,296 KB
testcase_21 AC 68 ms
5,760 KB
testcase_22 AC 181 ms
8,576 KB
testcase_23 AC 181 ms
8,576 KB
testcase_24 AC 77 ms
6,272 KB
testcase_25 AC 117 ms
7,552 KB
testcase_26 AC 39 ms
5,376 KB
testcase_27 AC 140 ms
8,448 KB
testcase_28 AC 4 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

func main()
	var n: int :: cui@inputInt()
	var dic: dict<int, int> :: #dict<int, int>
	var ans: int :: 0
	for(0, n - 2)
		for i(0, 1)
			var a: int :: cui@inputInt()
			var num: int :: dic.get(a, &)
			if(num > 1)
				do ans :+ 1
			end if
			do dic.add(a, num + 1)
		end for
	end for
	do cui@print("\{ans}\n")
end func
0