結果

問題 No.581 XOR
ユーザー YukimotoPGYukimotoPG
提出日時 2019-02-13 15:41:53
言語 Java21
(openjdk 21)
結果
AC  
実行時間 133 ms / 2,000 ms
コード長 215 bytes
コンパイル時間 1,935 ms
コンパイル使用メモリ 73,904 KB
実行使用メモリ 54,332 KB
最終ジャッジ日時 2024-09-13 10:02:17
合計ジャッジ時間 3,753 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 130 ms
53,912 KB
testcase_01 AC 133 ms
54,224 KB
testcase_02 AC 132 ms
54,232 KB
testcase_03 AC 131 ms
54,332 KB
testcase_04 AC 130 ms
53,952 KB
testcase_05 AC 133 ms
54,188 KB
testcase_06 AC 133 ms
53,936 KB
testcase_07 AC 131 ms
54,044 KB
testcase_08 AC 131 ms
53,936 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

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