結果

問題 No.581 XOR
ユーザー mosmos_21mosmos_21
提出日時 2017-10-27 22:22:48
言語 Java21
(openjdk 21)
結果
AC  
実行時間 115 ms / 2,000 ms
コード長 256 bytes
コンパイル時間 1,937 ms
コンパイル使用メモリ 73,812 KB
実行使用メモリ 53,920 KB
最終ジャッジ日時 2024-05-01 16:22:50
合計ジャッジ時間 3,387 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 104 ms
52,780 KB
testcase_01 AC 106 ms
52,884 KB
testcase_02 AC 105 ms
52,736 KB
testcase_03 AC 115 ms
53,792 KB
testcase_04 AC 113 ms
53,920 KB
testcase_05 AC 113 ms
53,264 KB
testcase_06 AC 115 ms
53,796 KB
testcase_07 AC 103 ms
52,572 KB
testcase_08 AC 112 ms
53,900 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Main {

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

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

    }
}
0