結果

問題 No.581 XOR
ユーザー FfalconokeFfalconoke
提出日時 2017-12-10 09:07:06
言語 Java21
(openjdk 21)
結果
AC  
実行時間 120 ms / 2,000 ms
コード長 274 bytes
コンパイル時間 2,950 ms
コンパイル使用メモリ 74,860 KB
実行使用メモリ 41,752 KB
最終ジャッジ日時 2024-05-07 16:52:12
合計ジャッジ時間 4,592 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 120 ms
41,440 KB
testcase_01 AC 103 ms
41,380 KB
testcase_02 AC 102 ms
41,168 KB
testcase_03 AC 103 ms
41,548 KB
testcase_04 AC 114 ms
41,752 KB
testcase_05 AC 116 ms
41,288 KB
testcase_06 AC 116 ms
41,324 KB
testcase_07 AC 104 ms
41,548 KB
testcase_08 AC 106 ms
41,208 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