結果

問題 No.182 新規性の虜
ユーザー gemmarogemmaro
提出日時 2020-04-08 12:25:12
言語 Elixir
(1.16.2)
結果
AC  
実行時間 1,513 ms / 5,000 ms
コード長 232 bytes
コンパイル時間 1,111 ms
コンパイル使用メモリ 62,804 KB
実行使用メモリ 157,068 KB
最終ジャッジ日時 2024-06-09 23:14:18
合計ジャッジ時間 31,129 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 648 ms
53,816 KB
testcase_01 AC 645 ms
53,692 KB
testcase_02 AC 646 ms
54,256 KB
testcase_03 AC 633 ms
54,756 KB
testcase_04 AC 641 ms
54,424 KB
testcase_05 AC 638 ms
53,556 KB
testcase_06 AC 639 ms
53,692 KB
testcase_07 AC 632 ms
53,804 KB
testcase_08 AC 1,231 ms
109,116 KB
testcase_09 AC 1,513 ms
157,068 KB
testcase_10 AC 1,501 ms
130,452 KB
testcase_11 AC 1,253 ms
113,264 KB
testcase_12 AC 901 ms
79,448 KB
testcase_13 AC 641 ms
54,216 KB
testcase_14 AC 639 ms
53,792 KB
testcase_15 AC 664 ms
54,076 KB
testcase_16 AC 643 ms
54,632 KB
testcase_17 AC 639 ms
53,876 KB
testcase_18 AC 994 ms
101,276 KB
testcase_19 AC 927 ms
81,140 KB
testcase_20 AC 837 ms
72,664 KB
testcase_21 AC 1,076 ms
99,608 KB
testcase_22 AC 879 ms
78,512 KB
testcase_23 AC 642 ms
54,060 KB
testcase_24 AC 1,415 ms
131,188 KB
testcase_25 AC 865 ms
91,100 KB
testcase_26 AC 768 ms
62,876 KB
testcase_27 AC 644 ms
53,964 KB
evil01.txt AC 1,751 ms
163,764 KB
evil02.txt AC 1,797 ms
157,964 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

defmodule Main do
  def main do
    IO.gets("")

    IO.gets("")
    |> String.split()
    |> Enum.group_by(fn n -> n end)
    |> Map.values()
    |> Enum.filter(fn v -> length(v) == 1 end)
    |> length()
    |> IO.puts()
  end
end
0