結果

問題 No.244 ★1のグラフの問題
ユーザー 3qvwn3qvwn
提出日時 2019-07-05 23:55:56
言語 Elixir
(1.16.2)
結果
AC  
実行時間 630 ms / 2,000 ms
コード長 128 bytes
コンパイル時間 1,162 ms
コンパイル使用メモリ 55,564 KB
実行使用メモリ 50,112 KB
最終ジャッジ日時 2023-08-29 23:42:03
合計ジャッジ時間 8,677 ms
ジャッジサーバーID
(参考情報)
judge15 / judge11
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 606 ms
49,704 KB
testcase_01 AC 609 ms
49,032 KB
testcase_02 AC 613 ms
49,888 KB
testcase_03 AC 608 ms
50,112 KB
testcase_04 AC 620 ms
49,252 KB
testcase_05 AC 630 ms
49,640 KB
testcase_06 AC 610 ms
49,884 KB
testcase_07 AC 618 ms
49,860 KB
testcase_08 AC 611 ms
49,200 KB
testcase_09 AC 610 ms
49,128 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