結果

問題 No.481 1から10
ユーザー gemmarogemmaro
提出日時 2020-04-05 14:21:58
言語 Elixir
(1.16.2)
結果
AC  
実行時間 656 ms / 2,000 ms
コード長 229 bytes
コンパイル時間 1,080 ms
コンパイル使用メモリ 62,752 KB
実行使用メモリ 54,796 KB
最終ジャッジ日時 2024-06-09 23:07:44
合計ジャッジ時間 8,714 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 653 ms
53,736 KB
testcase_01 AC 648 ms
53,932 KB
testcase_02 AC 656 ms
54,796 KB
testcase_03 AC 650 ms
54,072 KB
testcase_04 AC 651 ms
53,684 KB
testcase_05 AC 644 ms
53,680 KB
testcase_06 AC 638 ms
54,164 KB
testcase_07 AC 635 ms
54,052 KB
testcase_08 AC 639 ms
53,808 KB
testcase_09 AC 639 ms
54,412 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

defmodule Main do
  def main do
    IO.gets("")
    |> String.trim()
    |> String.split()
    |> Enum.map(fn s -> String.to_integer(s) end)
    |> Enum.sum()
    |> (fn s -> Enum.sum(1..10) - s end).()
    |> IO.puts()
  end
end
0