結果

問題 No.939 and or
ユーザー noriocnorioc
提出日時 2024-08-06 21:15:25
言語 Elixir
(1.16.2)
結果
WA  
実行時間 -
コード長 783 bytes
コンパイル時間 2,585 ms
コンパイル使用メモリ 62,392 KB
実行使用メモリ 54,412 KB
最終ジャッジ日時 2024-08-06 21:15:50
合計ジャッジ時間 23,644 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 586 ms
53,928 KB
testcase_01 AC 582 ms
53,928 KB
testcase_02 AC 600 ms
53,928 KB
testcase_03 AC 594 ms
54,228 KB
testcase_04 AC 608 ms
53,800 KB
testcase_05 WA -
testcase_06 AC 611 ms
54,052 KB
testcase_07 AC 589 ms
54,276 KB
testcase_08 AC 621 ms
53,772 KB
testcase_09 AC 588 ms
53,548 KB
testcase_10 AC 589 ms
53,800 KB
testcase_11 AC 613 ms
53,940 KB
testcase_12 AC 584 ms
53,808 KB
testcase_13 WA -
testcase_14 AC 585 ms
53,964 KB
testcase_15 AC 609 ms
54,276 KB
testcase_16 AC 584 ms
53,768 KB
testcase_17 AC 626 ms
53,636 KB
testcase_18 AC 584 ms
53,820 KB
testcase_19 AC 622 ms
53,668 KB
testcase_20 WA -
testcase_21 AC 620 ms
53,808 KB
testcase_22 AC 602 ms
53,940 KB
testcase_23 AC 586 ms
54,272 KB
testcase_24 AC 611 ms
53,816 KB
testcase_25 AC 587 ms
53,676 KB
testcase_26 AC 623 ms
54,056 KB
testcase_27 AC 588 ms
53,808 KB
testcase_28 AC 626 ms
53,680 KB
testcase_29 WA -
testcase_30 AC 615 ms
53,688 KB
testcase_31 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

defmodule Main do
  def input, do: IO.read(:line) |> String.trim
  def ii, do: input() |> String.to_integer
  def li, do: input() |> String.split |> Enum.map(&String.to_integer/1)
  def yn(b), do: IO.puts(if b, do: "Yes", else: "No")

  def comma(x) do
    s = Integer.to_string(x) |> String.graphemes
    {a, b} = Enum.split(s, rem(length(s), 3))

    [a] ++ (b |> Enum.chunk_every(3))
    |> Enum.join(",")
    |> String.trim_leading(",")
  end

  import Bitwise

  def main do
    [a, b] = li()

    if band(a, b) == a do
      cnt = bit_count(bxor(a, b))
      div(2 ** cnt, 2)
    else
      0
    end
    |> IO.puts
  end

  def bit_count(0), do: 0
  def bit_count(x) do
    if (x &&& 1) == 1 do
      1 + bit_count(x >>> 1)
    else
      bit_count(x >>> 1)
    end
  end
end
0