結果

問題 No.806 木を道に
ユーザー horiesinitihoriesiniti
提出日時 2023-02-07 02:49:46
言語 Ruby
(3.3.0)
結果
AC  
実行時間 244 ms / 2,000 ms
コード長 162 bytes
コンパイル時間 125 ms
コンパイル使用メモリ 7,296 KB
実行使用メモリ 13,056 KB
最終ジャッジ日時 2024-07-05 02:51:56
合計ジャッジ時間 6,098 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 85 ms
12,928 KB
testcase_01 AC 84 ms
12,544 KB
testcase_02 AC 85 ms
12,800 KB
testcase_03 AC 87 ms
12,800 KB
testcase_04 AC 85 ms
12,672 KB
testcase_05 AC 88 ms
12,672 KB
testcase_06 AC 84 ms
12,672 KB
testcase_07 AC 86 ms
12,672 KB
testcase_08 AC 87 ms
12,800 KB
testcase_09 AC 85 ms
12,800 KB
testcase_10 AC 120 ms
13,056 KB
testcase_11 AC 118 ms
12,800 KB
testcase_12 AC 211 ms
12,928 KB
testcase_13 AC 179 ms
12,928 KB
testcase_14 AC 211 ms
12,800 KB
testcase_15 AC 213 ms
12,800 KB
testcase_16 AC 135 ms
12,800 KB
testcase_17 AC 203 ms
12,800 KB
testcase_18 AC 101 ms
12,800 KB
testcase_19 AC 125 ms
12,928 KB
testcase_20 AC 204 ms
12,928 KB
testcase_21 AC 149 ms
12,800 KB
testcase_22 AC 244 ms
12,800 KB
testcase_23 AC 241 ms
12,800 KB
testcase_24 AC 165 ms
13,056 KB
testcase_25 AC 203 ms
13,056 KB
testcase_26 AC 132 ms
12,800 KB
testcase_27 AC 229 ms
12,800 KB
testcase_28 AC 92 ms
12,800 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

cs=Array.new(100001,0)
n=gets.to_i
(n-1).times{
	a,b=gets.split(" ").map{|e| e.to_i}
	cs[a]+=1
	cs[b]+=1
}
ans=0
1.upto(n){|i|
	ans+=cs[i]-2 if cs[i]>2
}
puts ans
0