結果

問題 No.939 and or
ユーザー noriocnorioc
提出日時 2024-08-06 21:22:50
言語 Elixir
(1.16.2)
結果
AC  
実行時間 534 ms / 2,000 ms
コード長 862 bytes
コンパイル時間 1,994 ms
コンパイル使用メモリ 62,552 KB
実行使用メモリ 55,280 KB
最終ジャッジ日時 2024-08-06 21:23:11
合計ジャッジ時間 19,310 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 508 ms
54,000 KB
testcase_01 AC 528 ms
54,420 KB
testcase_02 AC 507 ms
54,432 KB
testcase_03 AC 528 ms
54,292 KB
testcase_04 AC 505 ms
54,164 KB
testcase_05 AC 505 ms
53,908 KB
testcase_06 AC 533 ms
53,780 KB
testcase_07 AC 510 ms
54,120 KB
testcase_08 AC 506 ms
53,972 KB
testcase_09 AC 528 ms
54,288 KB
testcase_10 AC 511 ms
54,724 KB
testcase_11 AC 503 ms
53,912 KB
testcase_12 AC 504 ms
53,848 KB
testcase_13 AC 528 ms
54,064 KB
testcase_14 AC 510 ms
53,996 KB
testcase_15 AC 534 ms
54,296 KB
testcase_16 AC 503 ms
54,740 KB
testcase_17 AC 528 ms
54,004 KB
testcase_18 AC 512 ms
54,700 KB
testcase_19 AC 515 ms
54,300 KB
testcase_20 AC 513 ms
53,796 KB
testcase_21 AC 533 ms
54,260 KB
testcase_22 AC 504 ms
54,164 KB
testcase_23 AC 533 ms
53,808 KB
testcase_24 AC 504 ms
54,224 KB
testcase_25 AC 508 ms
54,736 KB
testcase_26 AC 534 ms
55,280 KB
testcase_27 AC 505 ms
54,216 KB
testcase_28 AC 531 ms
54,080 KB
testcase_29 AC 514 ms
54,296 KB
testcase_30 AC 529 ms
53,872 KB
testcase_31 AC 515 ms
54,348 KB
権限があれば一括ダウンロードができます

ソースコード

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

  def bin(x), do: :io_lib.format("~.2b", [x])

  import Bitwise

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

    cond do
      a == b -> 1
      band(a, b) == a ->
        cnt = bit_count(bxor(a, b))
        div(2 ** cnt, 2)
      true -> 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