結果

問題 No.581 XOR
ユーザー jimanojimano
提出日時 2018-01-23 23:18:50
言語 Java21
(openjdk 21)
結果
AC  
実行時間 56 ms / 2,000 ms
コード長 475 bytes
コンパイル時間 3,425 ms
コンパイル使用メモリ 74,308 KB
実行使用メモリ 50,244 KB
最終ジャッジ日時 2024-06-07 19:20:07
合計ジャッジ時間 4,587 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 55 ms
49,964 KB
testcase_01 AC 56 ms
50,064 KB
testcase_02 AC 55 ms
49,900 KB
testcase_03 AC 56 ms
50,008 KB
testcase_04 AC 55 ms
50,228 KB
testcase_05 AC 54 ms
50,244 KB
testcase_06 AC 55 ms
50,128 KB
testcase_07 AC 54 ms
49,912 KB
testcase_08 AC 56 ms
50,184 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package me.yukicoder;
import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;


public class No0581 {
	public static void main(String[] args) {
		try (BufferedReader br = new BufferedReader(new InputStreamReader(System.in))) {
			String[] str = br.readLine().split(" ");
			long a = Long.parseLong(str[0]);
			long c = Long.parseLong(str[1]);

			System.out.println(a ^ c);
		} catch (IOException e) {
			e.printStackTrace();
		}
		
	}
}
0