結果

問題 No.815 Are you a traveller ?
ユーザー gemmarogemmaro
提出日時 2020-04-01 08:15:37
言語 Elixir
(1.16.2)
結果
AC  
実行時間 666 ms / 2,000 ms
コード長 211 bytes
コンパイル時間 1,193 ms
コンパイル使用メモリ 63,916 KB
実行使用メモリ 54,288 KB
最終ジャッジ日時 2024-06-09 23:06:22
合計ジャッジ時間 6,903 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 660 ms
54,116 KB
testcase_01 AC 654 ms
54,276 KB
testcase_02 AC 662 ms
53,936 KB
testcase_03 AC 664 ms
54,064 KB
testcase_04 AC 666 ms
54,288 KB
testcase_05 AC 661 ms
53,812 KB
testcase_06 AC 655 ms
54,196 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

defmodule Main do
  def main do
    IO.gets("")
    |> String.trim()
    |> String.to_integer()
    |> (fn n ->
          (n / 2)
          |> Float.ceil()
        end).()
    |> trunc
    |> IO.puts()
  end
end
0