結果

問題 No.244 ★1のグラフの問題
ユーザー gemmarogemmaro
提出日時 2020-03-30 18:32:00
言語 Elixir
(1.16.2)
結果
AC  
実行時間 556 ms / 2,000 ms
コード長 144 bytes
コンパイル時間 1,236 ms
コンパイル使用メモリ 65,832 KB
実行使用メモリ 54,288 KB
最終ジャッジ日時 2024-06-09 23:03:18
合計ジャッジ時間 7,358 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 545 ms
54,004 KB
testcase_01 AC 535 ms
53,976 KB
testcase_02 AC 538 ms
53,924 KB
testcase_03 AC 529 ms
53,980 KB
testcase_04 AC 532 ms
53,940 KB
testcase_05 AC 537 ms
53,820 KB
testcase_06 AC 542 ms
54,288 KB
testcase_07 AC 556 ms
53,964 KB
testcase_08 AC 544 ms
54,132 KB
testcase_09 AC 540 ms
53,816 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

defmodule Main do
  def main do
    IO.gets("")
    |> String.trim()
    |> String.to_integer()
    |> (&(&1 - 1)).()
    |> IO.puts()
  end
end
0