結果

問題 No.581 XOR
ユーザー mosmos_21mosmos_21
提出日時 2017-10-27 22:21:29
言語 Java21
(openjdk 21)
結果
RE  
実行時間 -
コード長 254 bytes
コンパイル時間 1,778 ms
コンパイル使用メモリ 73,724 KB
実行使用メモリ 55,880 KB
最終ジャッジ日時 2024-05-01 16:21:07
合計ジャッジ時間 3,513 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 124 ms
53,972 KB
testcase_01 AC 111 ms
52,916 KB
testcase_02 AC 125 ms
53,868 KB
testcase_03 AC 125 ms
53,992 KB
testcase_04 AC 125 ms
53,876 KB
testcase_05 RE -
testcase_06 RE -
testcase_07 RE -
testcase_08 RE -
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Main {

    static Scanner in = new Scanner(System.in);

    void solve() {
        System.out.println(in.nextInt() ^ in.nextInt());
	}
	
    public static void main(String[] args) {
		new Main().solve();

    }
}
0