結果

問題 No.806 木を道に
ユーザー gemmarogemmaro
提出日時 2020-04-25 20:07:54
言語 Ruby
(3.3.0)
結果
AC  
実行時間 392 ms / 2,000 ms
コード長 456 bytes
コンパイル時間 108 ms
コンパイル使用メモリ 7,552 KB
実行使用メモリ 28,032 KB
最終ジャッジ日時 2024-11-07 18:22:58
合計ジャッジ時間 7,658 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 87 ms
12,160 KB
testcase_01 AC 86 ms
12,160 KB
testcase_02 AC 85 ms
12,160 KB
testcase_03 AC 89 ms
12,160 KB
testcase_04 AC 85 ms
12,160 KB
testcase_05 AC 86 ms
12,160 KB
testcase_06 AC 86 ms
12,160 KB
testcase_07 AC 86 ms
12,160 KB
testcase_08 AC 86 ms
12,160 KB
testcase_09 AC 86 ms
12,416 KB
testcase_10 AC 150 ms
15,104 KB
testcase_11 AC 145 ms
14,720 KB
testcase_12 AC 324 ms
25,856 KB
testcase_13 AC 256 ms
21,120 KB
testcase_14 AC 316 ms
24,832 KB
testcase_15 AC 334 ms
25,728 KB
testcase_16 AC 180 ms
16,384 KB
testcase_17 AC 306 ms
25,088 KB
testcase_18 AC 111 ms
12,928 KB
testcase_19 AC 153 ms
15,616 KB
testcase_20 AC 300 ms
24,064 KB
testcase_21 AC 206 ms
18,816 KB
testcase_22 AC 374 ms
27,520 KB
testcase_23 AC 387 ms
27,264 KB
testcase_24 AC 236 ms
20,096 KB
testcase_25 AC 318 ms
25,472 KB
testcase_26 AC 169 ms
16,384 KB
testcase_27 AC 392 ms
28,032 KB
testcase_28 AC 95 ms
12,672 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

# frozen_string_literal: true

class Array # rubocop:todo Style/Documentation
  def solve # rubocop:todo Metrics/AbcSize
    a = each_with_object({}) do |item, result|
      result[item[0]] ||= []
      result[item[1]] ||= []
      result[item[0]] << item[1]
      result[item[1]] << item[0]
    end
    a.map { |_k, v| [v.size - 2, 0].max }.sum
  end
end

N = gets.to_i
A = (N - 1).times.map { gets.chomp.split.map(&:to_i) }

RESULT = A.solve

puts RESULT
0