結果

問題 No.49 算数の宿題
ユーザー dangodango
提出日時 2023-06-15 16:13:25
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 54 ms / 5,000 ms
コード長 322 bytes
コンパイル時間 449 ms
コンパイル使用メモリ 82,564 KB
実行使用メモリ 64,384 KB
最終ジャッジ日時 2024-06-23 15:44:26
合計ジャッジ時間 1,466 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 54 ms
63,420 KB
testcase_01 AC 54 ms
63,232 KB
testcase_02 AC 52 ms
63,484 KB
testcase_03 AC 52 ms
63,648 KB
testcase_04 AC 53 ms
64,384 KB
testcase_05 AC 53 ms
63,576 KB
testcase_06 AC 53 ms
63,720 KB
testcase_07 AC 51 ms
64,140 KB
testcase_08 AC 53 ms
63,512 KB
testcase_09 AC 53 ms
63,232 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import re
def calculate(S):
    S = re.findall(r'\d+|\D', S)
    result = int(S[0])
    for i in range(1, len(S), 2):
        if S[i] == '+':
            result += int(S[i+1])
        elif S[i] == '*':
            result *= int(S[i+1])
    return result
S = input().translate(str.maketrans('+*', '*+'))
print(calculate(S))
0