結果

問題 No.49 算数の宿題
ユーザー brthyyjpbrthyyjp
提出日時 2021-01-08 21:01:02
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 38 ms / 5,000 ms
コード長 751 bytes
コンパイル時間 328 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 52,352 KB
最終ジャッジ日時 2024-06-02 07:32:28
合計ジャッジ時間 1,072 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
51,712 KB
testcase_01 AC 35 ms
51,712 KB
testcase_02 AC 35 ms
51,968 KB
testcase_03 AC 37 ms
51,968 KB
testcase_04 AC 35 ms
51,968 KB
testcase_05 AC 36 ms
52,352 KB
testcase_06 AC 35 ms
51,840 KB
testcase_07 AC 35 ms
51,968 KB
testcase_08 AC 38 ms
51,712 KB
testcase_09 AC 36 ms
51,968 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

s = str(input())
S = []
temp = []
for c in s:
    if c != '*' and c!= '+':
        temp.append(c)
    else:
        S.append(''.join(temp))
        S.append(c)
        temp = []
else:
    if temp:
        S.append(''.join(temp))

stack = []
for c in S:
    if not stack:
        stack.append(c)
    else:
        if c != '*' and c != '+':
            if stack[-1] != '*' and stack[-1] != '+':
                stack[-1] += c
            elif stack[-1] == '*':
                stack.pop()
                x = stack.pop()
                stack.append(str(int(x)+int(c)))
            else:
                stack.pop()
                x = stack.pop()
                stack.append(str(int(x)*int(c)))
        else:
            stack.append(c)
print(*stack)
0