結果

問題 No.244 ★1のグラフの問題
ユーザー betit0919betit0919
提出日時 2020-06-22 00:41:26
言語 Elixir
(1.16.2)
結果
AC  
実行時間 642 ms / 2,000 ms
コード長 117 bytes
コンパイル時間 1,068 ms
コンパイル使用メモリ 54,620 KB
実行使用メモリ 50,100 KB
最終ジャッジ日時 2023-08-30 00:55:28
合計ジャッジ時間 8,647 ms
ジャッジサーバーID
(参考情報)
judge15 / judge11
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 635 ms
49,484 KB
testcase_01 AC 642 ms
49,368 KB
testcase_02 AC 634 ms
49,696 KB
testcase_03 AC 631 ms
50,100 KB
testcase_04 AC 636 ms
49,844 KB
testcase_05 AC 635 ms
49,464 KB
testcase_06 AC 635 ms
49,372 KB
testcase_07 AC 640 ms
49,684 KB
testcase_08 AC 627 ms
49,124 KB
testcase_09 AC 630 ms
49,824 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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