結果

問題 No.1135 RPN
ユーザー damindamin
提出日時 2020-11-04 01:28:43
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
RE  
実行時間 -
コード長 1,089 bytes
コンパイル時間 84 ms
コンパイル使用メモリ 10,784 KB
実行使用メモリ 8,560 KB
最終ジャッジ日時 2023-09-29 15:19:45
合計ジャッジ時間 1,057 ms
ジャッジサーバーID
(参考情報)
judge15 / judge11
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 13 ms
8,348 KB
testcase_01 RE -
testcase_02 AC 15 ms
8,356 KB
testcase_03 AC 16 ms
8,400 KB
testcase_04 AC 15 ms
8,392 KB
testcase_05 AC 14 ms
8,388 KB
testcase_06 AC 13 ms
8,524 KB
testcase_07 RE -
testcase_08 AC 13 ms
8,432 KB
testcase_09 AC 13 ms
8,376 KB
testcase_10 AC 15 ms
8,412 KB
testcase_11 AC 13 ms
8,376 KB
testcase_12 AC 13 ms
8,408 KB
testcase_13 AC 14 ms
8,560 KB
testcase_14 RE -
testcase_15 AC 13 ms
8,272 KB
testcase_16 AC 13 ms
8,352 KB
testcase_17 AC 13 ms
8,316 KB
testcase_18 AC 13 ms
8,312 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
try:
    import os
    f = open('input.txt', 'r')
    sys.stdin = f
except FileNotFoundError:
    None
from math import sqrt, ceil
input=lambda: sys.stdin.readline().strip()

n=int(input())
A=list(map(str,input().split()))
s=A
now=0

def expr():
    global now
    ans= term()
    while now<n :
        y = term()
        op = s[now]
        now+=1
        if op =="+":
            ans+= y
        else:
            ans-=y
    return ans


def term():
    global now
    if now >=n:
        return 0
    elif n-2 <= now:
        # print(s[now],now)
        x = int(s[now])
        now +=1
        return x
    elif s[now].isdecimal() and s[now+1].isdecimal() and s[now+2] in "+-":
         x = int(s[now])
         y = int(s[now+1])
         op = s[now+2]
         now+=3
         if op=="+": return x+y
         return x-y
    elif all([s[i].isdecimal() for i in range(now,now+3)]):
        x = int(s[now]); now+=1
        y = term()
        op = s[now]
        now+=1
        if op=="+":return x+y
        return x-y
        now+=1
        return int(s[now])



print(expr())
0