結果

問題 No.2323 Nafmo、A+Bをする
ユーザー AckvyAckvy
提出日時 2023-05-28 13:37:15
言語 Java21
(openjdk 21)
結果
AC  
実行時間 119 ms / 2,000 ms
コード長 237 bytes
コンパイル時間 2,220 ms
コンパイル使用メモリ 74,368 KB
実行使用メモリ 41,396 KB
最終ジャッジ日時 2024-06-08 03:50:59
合計ジャッジ時間 5,665 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 112 ms
41,080 KB
testcase_01 AC 111 ms
40,948 KB
testcase_02 AC 111 ms
41,396 KB
testcase_03 AC 104 ms
39,852 KB
testcase_04 AC 118 ms
41,032 KB
testcase_05 AC 118 ms
40,856 KB
testcase_06 AC 102 ms
40,368 KB
testcase_07 AC 111 ms
40,908 KB
testcase_08 AC 116 ms
41,300 KB
testcase_09 AC 112 ms
41,112 KB
testcase_10 AC 118 ms
41,356 KB
testcase_11 AC 106 ms
40,184 KB
testcase_12 AC 107 ms
40,120 KB
testcase_13 AC 117 ms
41,176 KB
testcase_14 AC 112 ms
41,008 KB
testcase_15 AC 111 ms
40,824 KB
testcase_16 AC 119 ms
41,060 KB
testcase_17 AC 112 ms
41,136 KB
testcase_18 AC 116 ms
41,064 KB
testcase_19 AC 103 ms
39,956 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