結果

問題 No.806 木を道に
ユーザー cielciel
提出日時 2019-03-25 01:57:40
言語 Ruby
(3.3.0)
結果
AC  
実行時間 301 ms / 2,000 ms
コード長 104 bytes
コンパイル時間 52 ms
コンパイル使用メモリ 7,680 KB
実行使用メモリ 18,944 KB
最終ジャッジ日時 2024-04-15 10:46:57
合計ジャッジ時間 6,535 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 100 ms
12,160 KB
testcase_01 AC 96 ms
12,160 KB
testcase_02 AC 103 ms
12,288 KB
testcase_03 AC 96 ms
12,288 KB
testcase_04 AC 100 ms
12,288 KB
testcase_05 AC 99 ms
12,288 KB
testcase_06 AC 98 ms
12,160 KB
testcase_07 AC 98 ms
12,288 KB
testcase_08 AC 98 ms
12,160 KB
testcase_09 AC 100 ms
12,288 KB
testcase_10 AC 144 ms
13,568 KB
testcase_11 AC 144 ms
13,568 KB
testcase_12 AC 266 ms
18,560 KB
testcase_13 AC 218 ms
15,488 KB
testcase_14 AC 257 ms
18,304 KB
testcase_15 AC 266 ms
18,560 KB
testcase_16 AC 158 ms
13,568 KB
testcase_17 AC 245 ms
18,176 KB
testcase_18 AC 120 ms
12,416 KB
testcase_19 AC 143 ms
13,568 KB
testcase_20 AC 247 ms
18,304 KB
testcase_21 AC 186 ms
14,976 KB
testcase_22 AC 296 ms
18,816 KB
testcase_23 AC 301 ms
18,944 KB
testcase_24 AC 188 ms
15,232 KB
testcase_25 AC 242 ms
18,432 KB
testcase_26 AC 149 ms
13,568 KB
testcase_27 AC 277 ms
18,944 KB
testcase_28 AC 109 ms
12,416 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

h=Hash.new r=0
gets
$<.map{|e|a,b=e.split.map &:to_i;h[a]+=1;h[b]+=1}
h.each_value{|e|r+=e-2 if e>2}
p r
0