結果

問題 No.1135 RPN
ユーザー rlangevinrlangevin
提出日時 2024-09-02 08:55:26
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 71 ms / 2,000 ms
コード長 309 bytes
コンパイル時間 462 ms
コンパイル使用メモリ 82,564 KB
実行使用メモリ 54,072 KB
最終ジャッジ日時 2024-09-02 08:55:28
合計ジャッジ時間 2,407 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
52,648 KB
testcase_01 AC 38 ms
54,072 KB
testcase_02 AC 37 ms
53,380 KB
testcase_03 AC 38 ms
52,200 KB
testcase_04 AC 38 ms
52,464 KB
testcase_05 AC 38 ms
52,240 KB
testcase_06 AC 38 ms
52,616 KB
testcase_07 AC 37 ms
52,800 KB
testcase_08 AC 38 ms
52,268 KB
testcase_09 AC 38 ms
52,536 KB
testcase_10 AC 38 ms
52,556 KB
testcase_11 AC 71 ms
52,244 KB
testcase_12 AC 39 ms
52,488 KB
testcase_13 AC 38 ms
52,872 KB
testcase_14 AC 38 ms
53,036 KB
testcase_15 AC 38 ms
52,156 KB
testcase_16 AC 37 ms
52,956 KB
testcase_17 AC 37 ms
52,868 KB
testcase_18 AC 37 ms
52,672 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
A = list(input().split())
stack = []
for a in A:
    if a == "+" or a == "-":
        b = stack.pop()
        c = stack.pop()
        if a == "+":
            d = b + c
        else:
            d = c - b
        stack.append(d)
    else:
        stack.append(int(a))
        
print(stack[0])
0