結果

問題 No.581 XOR
ユーザー aikon_marimoaikon_marimo
提出日時 2018-02-03 21:21:54
言語 Java21
(openjdk 21)
結果
AC  
実行時間 129 ms / 2,000 ms
コード長 228 bytes
コンパイル時間 2,037 ms
コンパイル使用メモリ 73,992 KB
実行使用メモリ 54,796 KB
最終ジャッジ日時 2024-06-11 21:25:07
合計ジャッジ時間 3,824 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 102 ms
54,228 KB
testcase_01 AC 117 ms
53,944 KB
testcase_02 AC 118 ms
53,904 KB
testcase_03 AC 120 ms
54,796 KB
testcase_04 AC 119 ms
54,024 KB
testcase_05 AC 120 ms
54,104 KB
testcase_06 AC 129 ms
54,308 KB
testcase_07 AC 122 ms
54,200 KB
testcase_08 AC 120 ms
54,104 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

class Main {
	public static void main(String[] args) {
		Scanner in = new Scanner(System.in);
		
		long A = in.nextLong();
		long C = in.nextLong();
		
		long B = C^A;
		
		System.out.println(B);
	}
}
0