結果

問題 No.581 XOR
ユーザー TwinkleStar74TwinkleStar74
提出日時 2017-10-29 04:26:53
言語 Java21
(openjdk 21)
結果
RE  
実行時間 -
コード長 371 bytes
コンパイル時間 3,285 ms
コンパイル使用メモリ 73,704 KB
実行使用メモリ 50,356 KB
最終ジャッジ日時 2024-05-01 21:46:17
合計ジャッジ時間 4,383 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 56 ms
36,908 KB
testcase_01 AC 54 ms
36,740 KB
testcase_02 AC 55 ms
36,480 KB
testcase_03 AC 56 ms
36,788 KB
testcase_04 AC 54 ms
36,908 KB
testcase_05 RE -
testcase_06 RE -
testcase_07 RE -
testcase_08 RE -
権限があれば一括ダウンロードができます

ソースコード

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(" ");
		int a = Integer.parseInt(str[0]);
		int c = Integer.parseInt(str[1]);
		System.out.println(a^c);
	}
}
0