結果

問題 No.581 XOR
ユーザー tsunabittsunabit
提出日時 2018-07-15 02:13:16
言語 Java21
(openjdk 21)
結果
AC  
実行時間 134 ms / 2,000 ms
コード長 268 bytes
コンパイル時間 5,788 ms
コンパイル使用メモリ 75,044 KB
実行使用メモリ 54,180 KB
最終ジャッジ日時 2024-10-12 22:25:30
合計ジャッジ時間 6,665 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 134 ms
53,744 KB
testcase_01 AC 133 ms
54,156 KB
testcase_02 AC 117 ms
52,760 KB
testcase_03 AC 131 ms
53,928 KB
testcase_04 AC 131 ms
53,908 KB
testcase_05 AC 130 ms
54,180 KB
testcase_06 AC 133 ms
53,808 KB
testcase_07 AC 131 ms
53,784 KB
testcase_08 AC 131 ms
53,924 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;
import java.util.stream.Stream;
import java.time.*;
import java.time.format.*;

public class No581 {
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
		System.out.println(sc.nextLong() ^ sc.nextLong());
	}
}
0