結果
問題 | No.2595 Parsing Challenge |
ユーザー | Shirotsume |
提出日時 | 2023-12-23 00:08:26 |
言語 | PyPy3 (7.3.15) |
結果 |
WA
|
実行時間 | - |
コード長 | 408 bytes |
コンパイル時間 | 164 ms |
コンパイル使用メモリ | 82,596 KB |
実行使用メモリ | 348,196 KB |
最終ジャッジ日時 | 2024-09-27 11:41:04 |
合計ジャッジ時間 | 19,235 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 39 ms
55,648 KB |
testcase_01 | AC | 41 ms
56,944 KB |
testcase_02 | AC | 41 ms
55,696 KB |
testcase_03 | AC | 41 ms
55,396 KB |
testcase_04 | AC | 40 ms
55,656 KB |
testcase_05 | AC | 40 ms
55,852 KB |
testcase_06 | AC | 42 ms
55,820 KB |
testcase_07 | AC | 43 ms
56,008 KB |
testcase_08 | WA | - |
testcase_09 | AC | 40 ms
56,864 KB |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | AC | 39 ms
56,860 KB |
testcase_13 | WA | - |
testcase_14 | RE | - |
testcase_15 | RE | - |
testcase_16 | RE | - |
testcase_17 | WA | - |
testcase_18 | RE | - |
testcase_19 | RE | - |
testcase_20 | RE | - |
testcase_21 | RE | - |
testcase_22 | RE | - |
testcase_23 | RE | - |
testcase_24 | RE | - |
testcase_25 | RE | - |
testcase_26 | RE | - |
testcase_27 | RE | - |
testcase_28 | RE | - |
testcase_29 | RE | - |
testcase_30 | RE | - |
testcase_31 | RE | - |
testcase_32 | RE | - |
testcase_33 | RE | - |
testcase_34 | RE | - |
testcase_35 | RE | - |
testcase_36 | RE | - |
testcase_37 | RE | - |
testcase_38 | RE | - |
testcase_39 | RE | - |
testcase_40 | RE | - |
testcase_41 | RE | - |
testcase_42 | RE | - |
testcase_43 | RE | - |
testcase_44 | WA | - |
testcase_45 | WA | - |
testcase_46 | WA | - |
testcase_47 | WA | - |
testcase_48 | WA | - |
testcase_49 | RE | - |
testcase_50 | RE | - |
testcase_51 | RE | - |
testcase_52 | RE | - |
testcase_53 | RE | - |
testcase_54 | RE | - |
testcase_55 | RE | - |
testcase_56 | RE | - |
testcase_57 | RE | - |
testcase_58 | RE | - |
testcase_59 | RE | - |
ソースコード
import sys, time, random from collections import deque, Counter, defaultdict input = lambda: sys.stdin.readline().rstrip() ii = lambda: int(input()) mi = lambda: map(int, input().split()) li = lambda: list(mi()) inf = 2 ** 63 - 1 mod = 998244353 n = ii() s = input() t = [] for v in s: if t and t[-1] =='-' and v == '-': t.pop() continue t.append(v) t = ''.join(t) print(eval(t))