結果

問題 No.581 XOR
ユーザー Mcpu3Mcpu3
提出日時 2018-06-22 02:07:09
言語 Java21
(openjdk 21)
結果
AC  
実行時間 127 ms / 2,000 ms
コード長 217 bytes
コンパイル時間 2,097 ms
コンパイル使用メモリ 71,104 KB
実行使用メモリ 56,148 KB
最終ジャッジ日時 2023-09-13 07:49:10
合計ジャッジ時間 3,881 ms
ジャッジサーバーID
(参考情報)
judge14 / judge11
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 122 ms
55,932 KB
testcase_01 AC 122 ms
55,840 KB
testcase_02 AC 123 ms
55,740 KB
testcase_03 AC 127 ms
55,864 KB
testcase_04 AC 120 ms
55,672 KB
testcase_05 AC 121 ms
56,000 KB
testcase_06 AC 121 ms
56,148 KB
testcase_07 AC 120 ms
55,912 KB
testcase_08 AC 121 ms
55,752 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

class no581{
	public static void main(String[] args) {
		Scanner stdIn=new Scanner(System.in);
		long a,c;
		a=stdIn.nextLong();
		c=stdIn.nextLong();
		System.out.print(a^c);
	}
}
0