結果

問題 No.2323 Nafmo、A+Bをする
ユーザー CuriousFairy315CuriousFairy315
提出日時 2023-05-28 13:35:12
言語 Java21
(openjdk 21)
結果
AC  
実行時間 121 ms / 2,000 ms
コード長 433 bytes
コンパイル時間 2,349 ms
コンパイル使用メモリ 74,376 KB
実行使用メモリ 41,544 KB
最終ジャッジ日時 2024-06-08 03:45:57
合計ジャッジ時間 5,271 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 121 ms
41,264 KB
testcase_01 AC 110 ms
41,172 KB
testcase_02 AC 115 ms
41,332 KB
testcase_03 AC 102 ms
40,860 KB
testcase_04 AC 115 ms
41,132 KB
testcase_05 AC 102 ms
41,104 KB
testcase_06 AC 116 ms
41,084 KB
testcase_07 AC 114 ms
41,536 KB
testcase_08 AC 114 ms
41,424 KB
testcase_09 AC 101 ms
41,096 KB
testcase_10 AC 116 ms
41,076 KB
testcase_11 AC 118 ms
41,004 KB
testcase_12 AC 117 ms
41,432 KB
testcase_13 AC 102 ms
41,056 KB
testcase_14 AC 118 ms
41,332 KB
testcase_15 AC 116 ms
41,544 KB
testcase_16 AC 116 ms
41,220 KB
testcase_17 AC 112 ms
41,344 KB
testcase_18 AC 100 ms
41,196 KB
testcase_19 AC 120 ms
41,280 KB
権限があれば一括ダウンロードができます

ソースコード

diff #


import static java.lang.System.err;

public class Main {
	public static void main(String[] args) {
		java.io.PrintWriter out = new java.io.PrintWriter(System.out);
		new Main(out);
		out.flush();
		err.flush();
	}

	public Main(java.io.PrintWriter out) {
		try (java.util.Scanner sc = new java.util.Scanner(System.in)) {
			int A = Integer.parseInt(sc.next(), 2), B = Integer.parseInt(sc.next(), 2);
			out.println(A ^ B);
		}
	}
}
0