結果

問題 No.2323 Nafmo、A+Bをする
ユーザー CuriousFairy315CuriousFairy315
提出日時 2023-05-28 13:35:12
言語 Java
(openjdk 23)
結果
AC  
実行時間 149 ms / 2,000 ms
コード長 433 bytes
コンパイル時間 2,993 ms
コンパイル使用メモリ 74,368 KB
実行使用メモリ 41,440 KB
最終ジャッジ日時 2024-12-26 21:01:00
合計ジャッジ時間 6,714 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 124 ms
39,844 KB
testcase_01 AC 141 ms
41,292 KB
testcase_02 AC 132 ms
41,136 KB
testcase_03 AC 149 ms
41,300 KB
testcase_04 AC 143 ms
41,000 KB
testcase_05 AC 133 ms
41,128 KB
testcase_06 AC 140 ms
41,228 KB
testcase_07 AC 137 ms
41,228 KB
testcase_08 AC 145 ms
41,016 KB
testcase_09 AC 143 ms
41,256 KB
testcase_10 AC 136 ms
41,096 KB
testcase_11 AC 137 ms
41,172 KB
testcase_12 AC 122 ms
40,112 KB
testcase_13 AC 136 ms
41,136 KB
testcase_14 AC 133 ms
40,088 KB
testcase_15 AC 134 ms
41,440 KB
testcase_16 AC 141 ms
41,196 KB
testcase_17 AC 140 ms
40,880 KB
testcase_18 AC 140 ms
41,152 KB
testcase_19 AC 146 ms
40,988 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