結果

問題 No.2323 Nafmo、A+Bをする
ユーザー shin3110shin3110
提出日時 2023-05-28 15:40:34
言語 PyPy3
(7.3.15)
結果
RE  
実行時間 -
コード長 414 bytes
コンパイル時間 272 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 65,152 KB
最終ジャッジ日時 2024-06-08 08:15:05
合計ジャッジ時間 2,060 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 50 ms
51,712 KB
testcase_01 AC 43 ms
51,712 KB
testcase_02 RE -
testcase_03 RE -
testcase_04 AC 43 ms
52,096 KB
testcase_05 AC 42 ms
51,968 KB
testcase_06 AC 41 ms
51,840 KB
testcase_07 AC 41 ms
51,840 KB
testcase_08 AC 42 ms
51,712 KB
testcase_09 AC 41 ms
51,712 KB
testcase_10 AC 41 ms
51,840 KB
testcase_11 AC 42 ms
51,584 KB
testcase_12 AC 43 ms
51,840 KB
testcase_13 AC 42 ms
51,584 KB
testcase_14 AC 43 ms
51,584 KB
testcase_15 RE -
testcase_16 AC 42 ms
51,712 KB
testcase_17 AC 42 ms
51,712 KB
testcase_18 AC 41 ms
51,328 KB
testcase_19 RE -
権限があれば一括ダウンロードができます

ソースコード

diff #

s = input()
t = input()

if s > t:
    s, t = t, s

while len(s) < len(t):
    s = '0' + s

ans = ''
for i in range(len(s)):
    if s[i] == '1':
        if t[i] == '0':
            ans += '1'
        else:
            ans += '0'
    else:
        if t[i] == '0':
            ans += '0'
        else:
            ans += '1'

z = 0
for i in range(len(ans)):
    z *= 2
    if ans[i] == '1':
        z += 1

print(z)
0