結果

問題 No.1298 OR XOR
ユーザー noriocnorioc
提出日時 2024-08-06 01:23:40
言語 Elixir
(1.16.2)
結果
AC  
実行時間 607 ms / 2,000 ms
コード長 827 bytes
コンパイル時間 1,824 ms
コンパイル使用メモリ 61,428 KB
実行使用メモリ 54,412 KB
最終ジャッジ日時 2024-08-06 01:23:55
合計ジャッジ時間 11,558 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 596 ms
53,668 KB
testcase_01 AC 568 ms
54,040 KB
testcase_02 AC 568 ms
53,688 KB
testcase_03 AC 586 ms
53,620 KB
testcase_04 AC 575 ms
53,672 KB
testcase_05 AC 601 ms
53,552 KB
testcase_06 AC 565 ms
53,808 KB
testcase_07 AC 607 ms
53,680 KB
testcase_08 AC 561 ms
53,608 KB
testcase_09 AC 605 ms
53,752 KB
testcase_10 AC 590 ms
53,552 KB
testcase_11 AC 601 ms
54,412 KB
testcase_12 AC 566 ms
53,676 KB
testcase_13 AC 577 ms
53,812 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")

  # import Bitwise, only: [bxor: 2, &&&: 2, >>>: 2]
  #use Bitwise
  import Bitwise, only: :functions

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

  # 最下位ビット
  @spec lsb(integer()) :: integer()
  def lsb(x), do: x &&& -x

  def main do
    n = ii()

    if bit_count(n) == 1 do
      IO.puts Enum.join([-1, -1, -1], " ")
    else
      b = lsb(n)
      x = bxor(n, b)
      IO.puts Enum.join([n, b, x], " ")
    end
  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