結果

問題 No.2323 Nafmo、A+Bをする
ユーザー bug maker / ばぐめいかー@Python学習者bug maker / ばぐめいかー@Python学習者
提出日時 2023-07-07 17:14:22
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
RE  
実行時間 -
コード長 311 bytes
コンパイル時間 263 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 10,752 KB
最終ジャッジ日時 2024-07-21 12:38:42
合計ジャッジ時間 1,510 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 31 ms
10,496 KB
testcase_01 RE -
testcase_02 AC 26 ms
10,496 KB
testcase_03 AC 27 ms
10,496 KB
testcase_04 AC 27 ms
10,624 KB
testcase_05 AC 27 ms
10,496 KB
testcase_06 RE -
testcase_07 RE -
testcase_08 RE -
testcase_09 RE -
testcase_10 AC 26 ms
10,624 KB
testcase_11 AC 25 ms
10,624 KB
testcase_12 AC 27 ms
10,496 KB
testcase_13 AC 25 ms
10,624 KB
testcase_14 AC 26 ms
10,496 KB
testcase_15 AC 26 ms
10,624 KB
testcase_16 AC 26 ms
10,496 KB
testcase_17 AC 26 ms
10,496 KB
testcase_18 AC 26 ms
10,624 KB
testcase_19 AC 28 ms
10,496 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

a = f"{input():0>30}"  # f文字列で30桁左側0で埋めた表記
b = f"{input():0>30}"

c = [None] * 30

for i in range(30):
    if a[i] == b[i]:
        c[i] = "0"
    else:
        c[i] = "1"

c = "".join(c)

c = c.lstrip("0")

c_2 = int(c, 2)  # int(文字列, 2) で文字列を2進数表記

print(c_2)
0