結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 84 ms
12,032 KB
testcase_01 AC 78 ms
12,160 KB
testcase_02 AC 78 ms
12,160 KB
testcase_03 AC 79 ms
12,032 KB
testcase_04 AC 77 ms
12,160 KB
testcase_05 AC 84 ms
12,160 KB
testcase_06 AC 79 ms
12,288 KB
testcase_07 AC 78 ms
12,160 KB
testcase_08 AC 79 ms
12,032 KB
testcase_09 AC 78 ms
12,032 KB
testcase_10 AC 118 ms
13,568 KB
testcase_11 AC 112 ms
13,312 KB
testcase_12 AC 208 ms
18,432 KB
testcase_13 AC 171 ms
15,488 KB
testcase_14 AC 200 ms
18,176 KB
testcase_15 AC 219 ms
18,432 KB
testcase_16 AC 127 ms
13,568 KB
testcase_17 AC 196 ms
18,176 KB
testcase_18 AC 97 ms
12,544 KB
testcase_19 AC 117 ms
13,312 KB
testcase_20 AC 194 ms
18,048 KB
testcase_21 AC 147 ms
15,104 KB
testcase_22 AC 226 ms
18,688 KB
testcase_23 AC 244 ms
18,816 KB
testcase_24 AC 154 ms
15,104 KB
testcase_25 AC 193 ms
18,304 KB
testcase_26 AC 121 ms
13,440 KB
testcase_27 AC 223 ms
18,688 KB
testcase_28 AC 85 ms
12,288 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