結果

問題 No.49 算数の宿題
ユーザー yansi819yansi819
提出日時 2024-05-26 12:51:31
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 35 ms / 5,000 ms
コード長 577 bytes
コンパイル時間 330 ms
コンパイル使用メモリ 82,472 KB
実行使用メモリ 53,744 KB
最終ジャッジ日時 2024-05-26 12:51:32
合計ジャッジ時間 1,495 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 32 ms
52,952 KB
testcase_01 AC 31 ms
53,744 KB
testcase_02 AC 31 ms
53,148 KB
testcase_03 AC 35 ms
52,340 KB
testcase_04 AC 32 ms
52,948 KB
testcase_05 AC 33 ms
53,280 KB
testcase_06 AC 32 ms
53,196 KB
testcase_07 AC 32 ms
53,140 KB
testcase_08 AC 33 ms
52,068 KB
testcase_09 AC 33 ms
52,320 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def myeval(S):
    op = ""
    num = ""
    res = 0
    for c in S:
        if c != "+" and c != "*":
            num += c
        else:
            if op == "":
                res = int(num)
            else:
                if op == "+":
                    res += int(num)
                else:
                    res *= int(num)
            num = ""
            op = c
    if op == "+":
        res += int(num)
    else:
        res *= int(num)
    return res

S = input().rstrip()
S = S.replace("*", "%")
S = S.replace("+", "*")
S = S.replace("%", "+")
print(myeval(S))
0