結果

問題 No.581 XOR
ユーザー shinwisteriashinwisteria
提出日時 2018-03-04 10:28:13
言語 Java21
(openjdk 21)
結果
AC  
実行時間 102 ms / 2,000 ms
コード長 239 bytes
コンパイル時間 3,457 ms
コンパイル使用メモリ 76,028 KB
実行使用メモリ 41,236 KB
最終ジャッジ日時 2024-07-06 15:38:54
合計ジャッジ時間 4,307 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 102 ms
41,028 KB
testcase_01 AC 102 ms
41,236 KB
testcase_02 AC 93 ms
40,112 KB
testcase_03 AC 101 ms
41,116 KB
testcase_04 AC 88 ms
39,960 KB
testcase_05 AC 90 ms
39,656 KB
testcase_06 AC 98 ms
40,980 KB
testcase_07 AC 92 ms
40,144 KB
testcase_08 AC 100 ms
41,060 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package m.shin;
import java.util.Scanner;
public class Con581 {

	public static void main(String[] args) {
		Scanner s = new Scanner(System.in);
		long A = s.nextLong() , C = s.nextLong();
		s.close();

		System.out.println(C ^ A);

	}

}
0