結果

問題 No.2927 Reverse Polish Equation
ユーザー manuomanuo
提出日時 2024-10-12 16:10:34
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 551 ms / 2,000 ms
コード長 1,077 bytes
コンパイル時間 219 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 130,732 KB
最終ジャッジ日時 2024-10-16 00:25:16
合計ジャッジ時間 12,955 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 53 ms
55,552 KB
testcase_01 AC 54 ms
55,680 KB
testcase_02 AC 54 ms
55,552 KB
testcase_03 AC 53 ms
55,680 KB
testcase_04 AC 53 ms
55,808 KB
testcase_05 AC 54 ms
56,064 KB
testcase_06 AC 54 ms
55,296 KB
testcase_07 AC 107 ms
76,288 KB
testcase_08 AC 84 ms
71,552 KB
testcase_09 AC 106 ms
76,160 KB
testcase_10 AC 78 ms
68,864 KB
testcase_11 AC 105 ms
76,288 KB
testcase_12 AC 259 ms
82,176 KB
testcase_13 AC 347 ms
86,784 KB
testcase_14 AC 283 ms
83,200 KB
testcase_15 AC 337 ms
87,168 KB
testcase_16 AC 196 ms
79,104 KB
testcase_17 AC 413 ms
90,240 KB
testcase_18 AC 486 ms
94,080 KB
testcase_19 AC 152 ms
77,184 KB
testcase_20 AC 412 ms
90,240 KB
testcase_21 AC 551 ms
98,176 KB
testcase_22 AC 167 ms
78,080 KB
testcase_23 AC 52 ms
55,296 KB
testcase_24 AC 53 ms
55,680 KB
testcase_25 AC 52 ms
55,680 KB
testcase_26 AC 55 ms
55,424 KB
testcase_27 AC 489 ms
93,952 KB
testcase_28 AC 443 ms
92,160 KB
testcase_29 AC 168 ms
77,696 KB
testcase_30 AC 483 ms
94,720 KB
testcase_31 AC 121 ms
76,544 KB
testcase_32 AC 204 ms
79,360 KB
testcase_33 AC 274 ms
83,840 KB
testcase_34 AC 320 ms
85,760 KB
testcase_35 AC 80 ms
70,144 KB
testcase_36 AC 447 ms
93,824 KB
testcase_37 AC 214 ms
81,536 KB
testcase_38 AC 509 ms
96,384 KB
testcase_39 AC 292 ms
84,480 KB
testcase_40 AC 440 ms
94,336 KB
testcase_41 AC 412 ms
90,240 KB
testcase_42 AC 358 ms
125,184 KB
testcase_43 AC 398 ms
124,720 KB
testcase_44 AC 423 ms
124,944 KB
testcase_45 AC 347 ms
130,732 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import deque, defaultdict, Counter
from bisect import bisect_left, bisect_right
from itertools import permutations, combinations
from functools import cmp_to_key, cache
from heapq import heappop, heappush
import math, sys
import pypyjit
pypyjit.set_param('max_unroll_recursion=-1')
sys.setrecursionlimit(10**7)
_int = lambda x: int(x)-1
MOD = 998244353
INF = 1<<62
Yes, No = "Yes", "No"

Q, Y = map(int, input().split())
S = input().split()

def calc(x):
    stack = []
    for c in S:
        if c == "+":
            l, r = stack.pop(), stack.pop()
            stack.append(l+r)
        elif c == "min":
            l, r = stack.pop(), stack.pop()
            stack.append(min(l, r))
        elif c == "max":
            l, r = stack.pop(), stack.pop()
            stack.append(max(l, r))
        elif c == "X":
            stack.append(x)
        else:
            stack.append(int(c))
    return stack[0]            
l, r = -1, 10**15
while r-l > 1:
    m = (l+r)//2
    res = calc(m)
    if res >= Y: r = m
    else: l = m
print(r if calc(r) == Y else -1)
0