結果

問題 No.2323 Nafmo、A+Bをする
ユーザー ShirotsumeShirotsume
提出日時 2023-05-28 18:51:09
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 68 ms / 2,000 ms
コード長 53 bytes
コンパイル時間 680 ms
コンパイル使用メモリ 86,540 KB
実行使用メモリ 71,044 KB
最終ジャッジ日時 2023-08-27 15:08:41
合計ジャッジ時間 3,052 ms
ジャッジサーバーID
(参考情報)
judge13 / judge12
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 67 ms
70,920 KB
testcase_01 AC 65 ms
70,960 KB
testcase_02 AC 66 ms
70,928 KB
testcase_03 AC 66 ms
70,892 KB
testcase_04 AC 65 ms
71,040 KB
testcase_05 AC 68 ms
70,964 KB
testcase_06 AC 65 ms
70,888 KB
testcase_07 AC 66 ms
70,620 KB
testcase_08 AC 67 ms
70,768 KB
testcase_09 AC 64 ms
71,044 KB
testcase_10 AC 65 ms
70,956 KB
testcase_11 AC 65 ms
70,640 KB
testcase_12 AC 66 ms
70,896 KB
testcase_13 AC 66 ms
70,948 KB
testcase_14 AC 68 ms
71,036 KB
testcase_15 AC 67 ms
70,768 KB
testcase_16 AC 65 ms
70,896 KB
testcase_17 AC 66 ms
71,044 KB
testcase_18 AC 64 ms
71,036 KB
testcase_19 AC 65 ms
70,944 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

s = int(input(), 2)
t = int(input(), 2)

print(s ^ t)
0