結果

問題 No.581 XOR
ユーザー matsuyoshi30matsuyoshi30
提出日時 2018-05-06 16:50:18
言語 Java21
(openjdk 21)
結果
AC  
実行時間 133 ms / 2,000 ms
コード長 250 bytes
コンパイル時間 2,039 ms
コンパイル使用メモリ 74,356 KB
実行使用メモリ 41,676 KB
最終ジャッジ日時 2024-06-28 02:09:37
合計ジャッジ時間 3,791 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 128 ms
41,280 KB
testcase_01 AC 130 ms
40,820 KB
testcase_02 AC 130 ms
41,556 KB
testcase_03 AC 133 ms
41,172 KB
testcase_04 AC 132 ms
41,676 KB
testcase_05 AC 132 ms
41,336 KB
testcase_06 AC 132 ms
41,600 KB
testcase_07 AC 132 ms
41,216 KB
testcase_08 AC 130 ms
41,416 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

class Main {
    public static void main(String[] ars) {
        Scanner in = new Scanner(System.in);
        Long a = in.nextLong();
        Long c = in.nextLong();

        Long b = a ^ c;
        System.out.println(b);
    }
}
0