結果

問題 No.2851 Make Pairs
ユーザー noriocnorioc
提出日時 2024-08-25 23:41:16
言語 Elixir
(1.16.2)
結果
AC  
実行時間 1,840 ms / 2,000 ms
コード長 496 bytes
コンパイル時間 5,267 ms
コンパイル使用メモリ 62,284 KB
実行使用メモリ 126,204 KB
最終ジャッジ日時 2024-08-25 23:41:34
合計ジャッジ時間 14,176 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 603 ms
54,132 KB
testcase_01 AC 644 ms
53,996 KB
testcase_02 AC 1,700 ms
126,204 KB
testcase_03 AC 1,787 ms
124,680 KB
testcase_04 AC 1,840 ms
120,716 KB
testcase_05 AC 1,417 ms
99,100 KB
testcase_06 AC 1,772 ms
123,788 KB
testcase_07 AC 652 ms
53,624 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

defmodule Main do
  def input, do: IO.read(:line) |> String.trim
  def ii, do: input() |> String.to_integer
  def li, do: input() |> String.split |> Enum.map(&String.to_integer/1)
  def yn(b), do: IO.puts(if b, do: "Yes", else: "No")

  def main do
    ss = IO.binread(:eof) |> String.split("\n", trim: true)

    Enum.at(ss, 1)
    |> String.split
    |> Enum.map(&String.to_integer/1)
    |> Enum.frequencies
    |> Enum.map(fn {_, v} -> div(v, 2) end)
    |> Enum.sum
    |> IO.puts
  end
end
0