結果

問題 No.581 XOR
ユーザー samplelpmassamplelpmas
提出日時 2017-10-29 08:09:43
言語 Java21
(openjdk 21)
結果
AC  
実行時間 121 ms / 2,000 ms
コード長 250 bytes
コンパイル時間 1,903 ms
コンパイル使用メモリ 74,184 KB
実行使用メモリ 41,404 KB
最終ジャッジ日時 2024-05-01 21:47:43
合計ジャッジ時間 3,521 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 121 ms
41,020 KB
testcase_01 AC 108 ms
40,000 KB
testcase_02 AC 107 ms
40,176 KB
testcase_03 AC 118 ms
41,404 KB
testcase_04 AC 118 ms
41,148 KB
testcase_05 AC 110 ms
41,288 KB
testcase_06 AC 111 ms
41,172 KB
testcase_07 AC 103 ms
40,028 KB
testcase_08 AC 114 ms
41,188 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Main {

    public static void main(String[] args) {

        Scanner sc = new Scanner(System.in);

        long A = sc.nextLong();
        long C = sc.nextLong();

        System.out.println(A ^ C);

    }

}
0