結果

問題 No.2323 Nafmo、A+Bをする
ユーザー AckvyAckvy
提出日時 2023-05-28 13:37:15
言語 Java
(openjdk 23)
結果
AC  
実行時間 127 ms / 2,000 ms
コード長 237 bytes
コンパイル時間 2,042 ms
コンパイル使用メモリ 74,812 KB
実行使用メモリ 41,212 KB
最終ジャッジ日時 2024-12-26 21:15:18
合計ジャッジ時間 5,532 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 124 ms
40,896 KB
testcase_01 AC 115 ms
40,876 KB
testcase_02 AC 125 ms
40,896 KB
testcase_03 AC 122 ms
40,816 KB
testcase_04 AC 126 ms
40,952 KB
testcase_05 AC 122 ms
41,212 KB
testcase_06 AC 124 ms
40,844 KB
testcase_07 AC 123 ms
40,988 KB
testcase_08 AC 124 ms
40,824 KB
testcase_09 AC 126 ms
41,016 KB
testcase_10 AC 125 ms
40,812 KB
testcase_11 AC 126 ms
41,064 KB
testcase_12 AC 127 ms
41,180 KB
testcase_13 AC 126 ms
41,140 KB
testcase_14 AC 123 ms
40,048 KB
testcase_15 AC 125 ms
40,900 KB
testcase_16 AC 123 ms
41,212 KB
testcase_17 AC 125 ms
40,724 KB
testcase_18 AC 126 ms
41,184 KB
testcase_19 AC 125 ms
41,184 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main{
	public static void main(String args[]){
		Scanner sc = new Scanner(System.in);
		int A = Integer.parseInt(sc.next(), 2);
		int B = Integer.parseInt(sc.next(), 2);
		System.out.println(A ^ B);
	}
}
0