結果

問題 No.815 Are you a traveller ?
ユーザー nao22bnao22b
提出日時 2019-04-19 21:24:09
言語 Elixir
(1.16.2)
結果
AC  
実行時間 540 ms / 2,000 ms
コード長 193 bytes
コンパイル時間 1,390 ms
コンパイル使用メモリ 62,692 KB
実行使用メモリ 54,324 KB
最終ジャッジ日時 2024-06-09 22:31:41
合計ジャッジ時間 5,998 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 534 ms
53,800 KB
testcase_01 AC 540 ms
53,816 KB
testcase_02 AC 539 ms
53,744 KB
testcase_03 AC 532 ms
53,764 KB
testcase_04 AC 535 ms
54,324 KB
testcase_05 AC 531 ms
54,032 KB
testcase_06 AC 539 ms
54,144 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

defmodule Main do
    def solve(n) do
        div(n, 2) + rem(n, 2)
    end
    def main do
        n = IO.gets("") |> String.trim |> String.to_integer
        solve(n) |> IO.puts
    end
end

0