結果

問題 No.581 XOR
ユーザー TwinkleStar74TwinkleStar74
提出日時 2017-10-29 04:27:52
言語 Java21
(openjdk 21)
結果
AC  
実行時間 55 ms / 2,000 ms
コード長 369 bytes
コンパイル時間 3,189 ms
コンパイル使用メモリ 74,216 KB
実行使用メモリ 36,932 KB
最終ジャッジ日時 2024-05-01 21:46:27
合計ジャッジ時間 4,263 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 54 ms
36,584 KB
testcase_01 AC 55 ms
36,740 KB
testcase_02 AC 55 ms
36,716 KB
testcase_03 AC 54 ms
36,596 KB
testcase_04 AC 55 ms
36,836 KB
testcase_05 AC 54 ms
36,932 KB
testcase_06 AC 53 ms
36,644 KB
testcase_07 AC 53 ms
36,924 KB
testcase_08 AC 54 ms
36,724 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

public class No581 {
	public static void main(String[] args) throws IOException{
		String[] str = new BufferedReader(new InputStreamReader(System.in)).readLine().split(" ");
		long a = Long.parseLong(str[0]);
		long c = Long.parseLong(str[1]);
		System.out.println(a^c);
	}
}
0