結果
問題 | No.806 木を道に |
ユーザー | gemmaro |
提出日時 | 2020-04-25 19:49:55 |
言語 | Elixir (1.16.2) |
結果 |
TLE
(最新)
AC
(最初)
|
実行時間 | - |
コード長 | 553 bytes |
コンパイル時間 | 1,060 ms |
コンパイル使用メモリ | 63,600 KB |
実行使用メモリ | 70,336 KB |
最終ジャッジ日時 | 2024-06-09 23:55:19 |
合計ジャッジ時間 | 15,123 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 541 ms
55,264 KB |
testcase_01 | AC | 539 ms
54,276 KB |
testcase_02 | AC | 553 ms
54,068 KB |
testcase_03 | AC | 555 ms
54,596 KB |
testcase_04 | AC | 551 ms
53,840 KB |
testcase_05 | AC | 564 ms
54,528 KB |
testcase_06 | AC | 565 ms
54,196 KB |
testcase_07 | AC | 539 ms
54,628 KB |
testcase_08 | AC | 548 ms
54,260 KB |
testcase_09 | AC | 540 ms
54,116 KB |
testcase_10 | AC | 1,459 ms
70,336 KB |
testcase_11 | AC | 1,366 ms
66,332 KB |
testcase_12 | TLE | - |
testcase_13 | -- | - |
testcase_14 | -- | - |
testcase_15 | -- | - |
testcase_16 | -- | - |
testcase_17 | -- | - |
testcase_18 | -- | - |
testcase_19 | -- | - |
testcase_20 | -- | - |
testcase_21 | -- | - |
testcase_22 | -- | - |
testcase_23 | -- | - |
testcase_24 | -- | - |
testcase_25 | -- | - |
testcase_26 | -- | - |
testcase_27 | -- | - |
testcase_28 | -- | - |
ソースコード
defmodule Main do def main do 1..((IO.read(:line) |> String.trim() |> String.to_integer()) - 1) |> Enum.map(fn _ -> IO.read(:line) |> String.split() |> Enum.map(&String.to_integer/1) end) |> solve() |> IO.puts() end def solve(a) do a |> Enum.reduce( %{}, fn [x, y], acc -> acc |> Map.update(x, [y], &[y | &1]) |> Map.update(y, [x], &[x | &1]) end ) |> Enum.map(fn {_, v} -> max((v |> length) - 2, 0) end) |> Enum.sum() end end