結果

問題 No.581 XOR
ユーザー FfalconokeFfalconoke
提出日時 2017-12-10 09:07:06
言語 Java21
(openjdk 21)
結果
AC  
実行時間 118 ms / 2,000 ms
コード長 274 bytes
コンパイル時間 3,485 ms
コンパイル使用メモリ 74,440 KB
実行使用メモリ 50,104 KB
最終ジャッジ日時 2024-11-30 11:14:35
合計ジャッジ時間 5,153 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 100 ms
48,504 KB
testcase_01 AC 115 ms
49,784 KB
testcase_02 AC 117 ms
50,104 KB
testcase_03 AC 109 ms
48,856 KB
testcase_04 AC 118 ms
49,852 KB
testcase_05 AC 113 ms
50,004 KB
testcase_06 AC 104 ms
48,780 KB
testcase_07 AC 114 ms
50,072 KB
testcase_08 AC 110 ms
49,880 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;
public class solve4{
	public static void main(String[] args){
		Scanner sc = new Scanner(System.in);
		long a = sc.nextLong();
		long b = sc.nextLong();
		System.out.println(a ^ b);
		//排他的論理和は排他的論理和で求められる
	}
}
0