結果
問題 | No.708 (+ー)の式 |
ユーザー | GrayCoder |
提出日時 | 2018-08-09 21:49:57 |
言語 | Python3 (3.12.2 + numpy 1.26.4 + scipy 1.12.0) |
結果 |
AC
|
実行時間 | 43 ms / 2,000 ms |
コード長 | 759 bytes |
コンパイル時間 | 119 ms |
コンパイル使用メモリ | 12,544 KB |
実行使用メモリ | 11,520 KB |
最終ジャッジ日時 | 2024-09-23 05:15:01 |
合計ジャッジ時間 | 1,489 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 38 ms
11,392 KB |
testcase_01 | AC | 38 ms
11,392 KB |
testcase_02 | AC | 40 ms
11,392 KB |
testcase_03 | AC | 40 ms
11,264 KB |
testcase_04 | AC | 43 ms
11,520 KB |
testcase_05 | AC | 39 ms
11,264 KB |
testcase_06 | AC | 38 ms
11,264 KB |
testcase_07 | AC | 39 ms
11,392 KB |
testcase_08 | AC | 39 ms
11,264 KB |
testcase_09 | AC | 40 ms
11,264 KB |
testcase_10 | AC | 40 ms
11,392 KB |
testcase_11 | AC | 41 ms
11,264 KB |
testcase_12 | AC | 40 ms
11,392 KB |
testcase_13 | AC | 39 ms
11,392 KB |
testcase_14 | AC | 39 ms
11,392 KB |
ソースコード
import ast import operator as op from sys import stdin, stdout input = lambda: stdin.readline().rstrip() write = stdout.write operators = {ast.Add: op.add, ast.Sub: op.sub, ast.Mult: op.mul, ast.Div: op.truediv, ast.Pow: op.pow, ast.BitXor: op.xor, ast.USub: op.neg} def eval_expr(expr): return eval_(ast.parse(expr, mode='eval').body) def eval_(node): if isinstance(node, ast.Num): return node.n elif isinstance(node, ast.BinOp): return operators[type(node.op)](eval_(node.left), eval_(node.right)) elif isinstance(node, ast.UnaryOp): return operators[type(node.op)](eval_(node.operand)) else: raise TypeError(node) def main(): S = input() print(eval_expr(S)) main()