結果

問題 No.244 ★1のグラフの問題
ユーザー 3qvwn3qvwn
提出日時 2019-07-05 23:55:56
言語 Elixir
(1.18.1)
結果
AC  
実行時間 537 ms / 2,000 ms
コード長 128 bytes
コンパイル時間 896 ms
コンパイル使用メモリ 62,248 KB
実行使用メモリ 55,480 KB
最終ジャッジ日時 2024-12-31 03:21:47
合計ジャッジ時間 7,354 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 529 ms
55,156 KB
testcase_01 AC 534 ms
54,940 KB
testcase_02 AC 533 ms
54,204 KB
testcase_03 AC 528 ms
55,480 KB
testcase_04 AC 537 ms
54,164 KB
testcase_05 AC 532 ms
53,872 KB
testcase_06 AC 536 ms
54,236 KB
testcase_07 AC 532 ms
54,000 KB
testcase_08 AC 530 ms
54,036 KB
testcase_09 AC 531 ms
54,652 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