結果

問題 No.581 XOR
ユーザー rabirabi
提出日時 2019-06-24 12:25:49
言語 Java21
(openjdk 21)
結果
AC  
実行時間 47 ms / 2,000 ms
コード長 441 bytes
コンパイル時間 2,702 ms
コンパイル使用メモリ 73,312 KB
実行使用メモリ 37,152 KB
最終ジャッジ日時 2024-06-11 00:28:24
合計ジャッジ時間 3,617 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 44 ms
37,028 KB
testcase_01 AC 45 ms
36,676 KB
testcase_02 AC 45 ms
37,120 KB
testcase_03 AC 44 ms
36,968 KB
testcase_04 AC 45 ms
37,152 KB
testcase_05 AC 45 ms
36,536 KB
testcase_06 AC 45 ms
36,652 KB
testcase_07 AC 47 ms
36,672 KB
testcase_08 AC 45 ms
36,628 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;

public class Tester2 {
	public static void main(String[] args){
		try(BufferedReader br = new BufferedReader(new InputStreamReader(System.in))){
			String[] ary = br.readLine().split(" ");
			long a = Long.parseLong(ary[0]);
			long b = Long.parseLong(ary[1]);
			System.out.println(a^b);
		}catch(IOException e) {
			e.printStackTrace();
		}
	}
}
0