結果

問題 No.244 ★1のグラフの問題
ユーザー 3qvwn3qvwn
提出日時 2019-07-05 23:55:56
言語 Elixir
(1.16.2)
結果
AC  
実行時間 705 ms / 2,000 ms
コード長 128 bytes
コンパイル時間 1,102 ms
コンパイル使用メモリ 62,700 KB
実行使用メモリ 55,208 KB
最終ジャッジ日時 2024-06-09 22:54:04
合計ジャッジ時間 9,142 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 641 ms
55,208 KB
testcase_01 AC 643 ms
54,120 KB
testcase_02 AC 658 ms
54,016 KB
testcase_03 AC 659 ms
53,980 KB
testcase_04 AC 677 ms
54,504 KB
testcase_05 AC 693 ms
54,128 KB
testcase_06 AC 705 ms
54,068 KB
testcase_07 AC 676 ms
54,260 KB
testcase_08 AC 671 ms
54,456 KB
testcase_09 AC 656 ms
54,248 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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