結果

問題 No.708 (+ー)の式
ユーザー mlihua09mlihua09
提出日時 2020-09-18 02:25:04
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 39 ms / 2,000 ms
コード長 404 bytes
コンパイル時間 328 ms
コンパイル使用メモリ 82,444 KB
実行使用メモリ 53,748 KB
最終ジャッジ日時 2024-06-22 07:30:14
合計ジャッジ時間 1,326 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 32 ms
52,760 KB
testcase_01 AC 32 ms
52,252 KB
testcase_02 AC 34 ms
52,128 KB
testcase_03 AC 39 ms
52,212 KB
testcase_04 AC 35 ms
53,660 KB
testcase_05 AC 33 ms
52,552 KB
testcase_06 AC 33 ms
52,948 KB
testcase_07 AC 34 ms
52,196 KB
testcase_08 AC 33 ms
52,244 KB
testcase_09 AC 32 ms
53,748 KB
testcase_10 AC 33 ms
52,380 KB
testcase_11 AC 34 ms
52,584 KB
testcase_12 AC 32 ms
52,588 KB
testcase_13 AC 34 ms
52,152 KB
testcase_14 AC 33 ms
53,748 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

S = input()


ans = [0, 1]

for s in S:
    
    if s == '(':
        
        ans += [0, 1]
        
    elif s == ')':
        
        a, b = ans.pop(), ans.pop()
        ans[-1] += a * b
    
    elif s == '+':
        
        ans += [1]
        
    elif s == '-':
        
        ans += [-1]
        
    else:
        a = ans.pop()
        
        ans[-1] += a * int(s)
        
print(ans[0])
0