結果

問題 No.481 1から10
ユーザー gemmarogemmaro
提出日時 2020-04-05 14:23:13
言語 Elixir
(1.16.2)
結果
AC  
実行時間 646 ms / 2,000 ms
コード長 208 bytes
コンパイル時間 1,155 ms
コンパイル使用メモリ 64,712 KB
実行使用メモリ 54,520 KB
最終ジャッジ日時 2024-06-09 23:08:42
合計ジャッジ時間 8,451 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 646 ms
53,852 KB
testcase_01 AC 641 ms
53,884 KB
testcase_02 AC 642 ms
54,128 KB
testcase_03 AC 631 ms
53,984 KB
testcase_04 AC 622 ms
54,128 KB
testcase_05 AC 633 ms
54,196 KB
testcase_06 AC 641 ms
54,040 KB
testcase_07 AC 634 ms
54,260 KB
testcase_08 AC 636 ms
54,520 KB
testcase_09 AC 633 ms
54,116 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

defmodule Main do
  def main do
    IO.gets("")
    |> 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