結果

問題 No.581 XOR
ユーザー Tsukasa_TypeTsukasa_Type
提出日時 2018-02-09 02:46:46
言語 Java21
(openjdk 21)
結果
RE  
実行時間 -
コード長 207 bytes
コンパイル時間 1,960 ms
コンパイル使用メモリ 75,652 KB
実行使用メモリ 54,152 KB
最終ジャッジ日時 2024-04-09 23:30:03
合計ジャッジ時間 3,585 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 109 ms
52,836 KB
testcase_01 AC 119 ms
53,864 KB
testcase_02 AC 122 ms
53,872 KB
testcase_03 AC 121 ms
54,112 KB
testcase_04 AC 118 ms
54,112 KB
testcase_05 RE -
testcase_06 RE -
testcase_07 RE -
testcase_08 RE -
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

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