結果

問題 No.63 ポッキーゲーム
ユーザー gemmarogemmaro
提出日時 2020-04-17 10:06:03
言語 Elixir
(1.16.2)
結果
AC  
実行時間 694 ms / 5,000 ms
コード長 334 bytes
コンパイル時間 1,089 ms
コンパイル使用メモリ 64,776 KB
実行使用メモリ 55,236 KB
最終ジャッジ日時 2024-06-09 23:29:51
合計ジャッジ時間 16,904 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 635 ms
54,012 KB
testcase_01 AC 632 ms
54,836 KB
testcase_02 AC 633 ms
54,724 KB
testcase_03 AC 631 ms
53,900 KB
testcase_04 AC 635 ms
53,748 KB
testcase_05 AC 636 ms
54,808 KB
testcase_06 AC 633 ms
55,100 KB
testcase_07 AC 634 ms
53,976 KB
testcase_08 AC 646 ms
55,236 KB
testcase_09 AC 628 ms
54,348 KB
testcase_10 AC 634 ms
54,124 KB
testcase_11 AC 640 ms
53,876 KB
testcase_12 AC 647 ms
54,436 KB
testcase_13 AC 660 ms
54,476 KB
testcase_14 AC 641 ms
53,992 KB
testcase_15 AC 664 ms
54,144 KB
testcase_16 AC 694 ms
54,480 KB
testcase_17 AC 654 ms
53,864 KB
testcase_18 AC 649 ms
54,468 KB
testcase_19 AC 658 ms
55,188 KB
testcase_20 AC 652 ms
53,612 KB
testcase_21 AC 650 ms
54,216 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

defmodule Main do
  def main do
    IO.read(:line)
    |> String.split()
    |> Enum.map(&String.to_integer/1)
    |> solve
    |> IO.puts()
  end

  def solve([l, k]) do
    s = l |> rem(2 * k)

    (((l - s) |> div(2)) -
       cond do
         s == 0 -> 1
         true -> 0
       end)
    |> (&(&1 - (&1 |> rem(k)))).()
  end
end
0