結果

問題 No.244 ★1のグラフの問題
ユーザー betit0919betit0919
提出日時 2020-06-22 00:41:26
言語 Elixir
(1.16.2)
結果
AC  
実行時間 547 ms / 2,000 ms
コード長 117 bytes
コンパイル時間 1,043 ms
コンパイル使用メモリ 62,824 KB
実行使用メモリ 54,660 KB
最終ジャッジ日時 2024-06-10 00:07:09
合計ジャッジ時間 7,191 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 534 ms
53,812 KB
testcase_01 AC 529 ms
53,800 KB
testcase_02 AC 547 ms
53,684 KB
testcase_03 AC 539 ms
53,920 KB
testcase_04 AC 531 ms
53,804 KB
testcase_05 AC 525 ms
53,684 KB
testcase_06 AC 525 ms
53,936 KB
testcase_07 AC 529 ms
53,820 KB
testcase_08 AC 546 ms
54,164 KB
testcase_09 AC 527 ms
54,660 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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