結果

問題 No.2086 A+B問題
ユーザー ra5anchorra5anchor
提出日時 2024-07-24 20:40:30
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 531 bytes
コンパイル時間 532 ms
コンパイル使用メモリ 82,448 KB
実行使用メモリ 54,372 KB
最終ジャッジ日時 2024-07-24 20:40:33
合計ジャッジ時間 2,163 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
52,740 KB
testcase_01 AC 35 ms
52,604 KB
testcase_02 AC 39 ms
51,960 KB
testcase_03 AC 36 ms
52,128 KB
testcase_04 AC 36 ms
52,208 KB
testcase_05 AC 36 ms
52,596 KB
testcase_06 AC 36 ms
53,012 KB
testcase_07 WA -
testcase_08 AC 38 ms
52,004 KB
testcase_09 AC 37 ms
51,880 KB
testcase_10 AC 36 ms
52,532 KB
testcase_11 AC 37 ms
52,556 KB
testcase_12 AC 35 ms
53,200 KB
testcase_13 AC 35 ms
52,768 KB
testcase_14 AC 35 ms
53,236 KB
testcase_15 AC 40 ms
52,272 KB
testcase_16 AC 36 ms
52,328 KB
testcase_17 AC 36 ms
52,124 KB
testcase_18 AC 37 ms
52,632 KB
testcase_19 AC 36 ms
53,048 KB
testcase_20 AC 36 ms
52,560 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

A = input()
B = input()
N = max(len(A), len(B))+1

A = str(A).zfill(N)
B = str(B).zfill(N)
A = A[::-1]
B = B[::-1]
# print(A)
if A == "0" and B == "0":
    print("0")
    exit()
ans = []
kuri = 0
for i in range(N):
    now = int(A[i]) + int(B[i]) + kuri
    if now >= 10:
        kuri = 1
    else:
        kuri = 0
    ans.append(str(now%10))
sans_ = "".join(ans)
sans_ = sans_[::-1]
ans = []
first = True
for c in sans_:
    if first == True and c == '0':
        continue
    first = False
    ans.append(c)
print("".join(ans))
0