結果

問題 No.687 E869120 and Constructing Array 1
ユーザー gemmarogemmaro
提出日時 2020-04-07 16:06:42
言語 Elixir
(1.16.2)
結果
AC  
実行時間 543 ms / 1,000 ms
コード長 186 bytes
コンパイル時間 926 ms
コンパイル使用メモリ 62,632 KB
実行使用メモリ 54,428 KB
最終ジャッジ日時 2024-06-09 23:09:09
合計ジャッジ時間 6,758 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 533 ms
54,428 KB
testcase_01 AC 529 ms
53,684 KB
testcase_02 AC 527 ms
54,068 KB
testcase_03 AC 532 ms
53,948 KB
testcase_04 AC 541 ms
54,004 KB
testcase_05 AC 532 ms
54,056 KB
testcase_06 AC 524 ms
54,032 KB
testcase_07 AC 536 ms
53,740 KB
testcase_08 AC 543 ms
53,940 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

defmodule Main do
  def main do
    IO.gets("")
    |> String.trim()
    |> String.to_integer()
    |> (&"#{(&1 / 2) |> trunc} #{&1 - ((&1 / 2) |> trunc)}").()
    |> IO.puts()
  end
end
0