結果

問題 No.63 ポッキーゲーム
ユーザー midolin limegreenmidolin limegreen
提出日時 2019-01-03 07:57:23
言語 Elixir
(1.16.2)
結果
WA  
実行時間 -
コード長 239 bytes
コンパイル時間 1,053 ms
コンパイル使用メモリ 63,640 KB
実行使用メモリ 57,680 KB
最終ジャッジ日時 2024-06-09 22:25:38
合計ジャッジ時間 14,554 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 547 ms
54,124 KB
testcase_01 AC 558 ms
54,672 KB
testcase_02 AC 551 ms
54,004 KB
testcase_03 AC 546 ms
53,736 KB
testcase_04 WA -
testcase_05 AC 557 ms
54,592 KB
testcase_06 AC 549 ms
53,876 KB
testcase_07 AC 547 ms
54,316 KB
testcase_08 AC 556 ms
53,732 KB
testcase_09 AC 559 ms
54,488 KB
testcase_10 AC 581 ms
53,760 KB
testcase_11 AC 560 ms
53,872 KB
testcase_12 AC 554 ms
54,724 KB
testcase_13 WA -
testcase_14 AC 571 ms
53,732 KB
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 AC 562 ms
54,132 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

defmodule Main do
  def main do
    [l, k] = IO.gets("")  |> String.trim
                          |> String.split
                          |> Enum.map(&String.to_integer/1)
    div(l, 2 * k) * k |> Integer.to_string |> IO.puts
  end
end
0