結果

問題 No.581 XOR
ユーザー tsunabittsunabit
提出日時 2018-07-15 02:13:16
言語 Java21
(openjdk 21)
結果
AC  
実行時間 120 ms / 2,000 ms
コード長 268 bytes
コンパイル時間 4,658 ms
コンパイル使用メモリ 74,976 KB
実行使用メモリ 41,216 KB
最終ジャッジ日時 2024-04-21 00:06:38
合計ジャッジ時間 5,985 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 119 ms
41,028 KB
testcase_01 AC 120 ms
40,992 KB
testcase_02 AC 100 ms
41,108 KB
testcase_03 AC 107 ms
41,216 KB
testcase_04 AC 111 ms
40,872 KB
testcase_05 AC 110 ms
41,092 KB
testcase_06 AC 106 ms
41,148 KB
testcase_07 AC 105 ms
39,680 KB
testcase_08 AC 107 ms
41,140 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