結果

問題 No.581 XOR
ユーザー gemmarogemmaro
提出日時 2020-04-18 08:37:47
言語 Elixir
(1.16.2)
結果
AC  
実行時間 541 ms / 2,000 ms
コード長 203 bytes
コンパイル時間 950 ms
コンパイル使用メモリ 62,752 KB
実行使用メモリ 54,532 KB
最終ジャッジ日時 2024-06-09 23:31:59
合計ジャッジ時間 6,771 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 526 ms
54,532 KB
testcase_01 AC 526 ms
54,004 KB
testcase_02 AC 522 ms
53,676 KB
testcase_03 AC 530 ms
54,068 KB
testcase_04 AC 526 ms
53,884 KB
testcase_05 AC 529 ms
53,940 KB
testcase_06 AC 541 ms
53,808 KB
testcase_07 AC 530 ms
54,280 KB
testcase_08 AC 529 ms
53,800 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([a, c]) do
    Bitwise.bxor(a, c)
  end
end
0