結果

問題 No.2927 Reverse Polish Equation
ユーザー amesyuamesyu
提出日時 2024-10-12 19:15:53
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 399 ms / 2,000 ms
コード長 732 bytes
コンパイル時間 267 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 129,224 KB
最終ジャッジ日時 2024-10-16 00:31:07
合計ジャッジ時間 9,576 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
51,712 KB
testcase_01 AC 40 ms
51,456 KB
testcase_02 AC 39 ms
51,840 KB
testcase_03 AC 40 ms
51,712 KB
testcase_04 AC 40 ms
51,840 KB
testcase_05 AC 40 ms
51,968 KB
testcase_06 AC 40 ms
51,968 KB
testcase_07 AC 67 ms
67,072 KB
testcase_08 AC 65 ms
66,688 KB
testcase_09 AC 71 ms
68,992 KB
testcase_10 AC 54 ms
62,464 KB
testcase_11 AC 75 ms
70,528 KB
testcase_12 AC 167 ms
81,280 KB
testcase_13 AC 222 ms
85,760 KB
testcase_14 AC 192 ms
82,432 KB
testcase_15 AC 201 ms
85,888 KB
testcase_16 AC 131 ms
77,952 KB
testcase_17 AC 248 ms
89,088 KB
testcase_18 AC 285 ms
92,672 KB
testcase_19 AC 109 ms
76,032 KB
testcase_20 AC 253 ms
88,576 KB
testcase_21 AC 319 ms
97,536 KB
testcase_22 AC 121 ms
76,416 KB
testcase_23 AC 38 ms
51,840 KB
testcase_24 AC 39 ms
51,712 KB
testcase_25 AC 38 ms
51,712 KB
testcase_26 AC 38 ms
51,712 KB
testcase_27 AC 305 ms
93,312 KB
testcase_28 AC 320 ms
90,624 KB
testcase_29 AC 126 ms
76,416 KB
testcase_30 AC 348 ms
93,184 KB
testcase_31 AC 88 ms
73,728 KB
testcase_32 AC 154 ms
78,976 KB
testcase_33 AC 205 ms
82,048 KB
testcase_34 AC 245 ms
84,224 KB
testcase_35 AC 63 ms
64,256 KB
testcase_36 AC 264 ms
93,184 KB
testcase_37 AC 168 ms
81,024 KB
testcase_38 AC 399 ms
95,616 KB
testcase_39 AC 215 ms
83,456 KB
testcase_40 AC 317 ms
92,800 KB
testcase_41 AC 309 ms
88,832 KB
testcase_42 AC 274 ms
123,164 KB
testcase_43 AC 306 ms
125,736 KB
testcase_44 AC 325 ms
125,740 KB
testcase_45 AC 272 ms
129,224 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

q, y = map(int, input().split())
s = input().split()
l = -1
r = y + 2

def solve(x):
    stack = []
    for i in range(q):
        if s[i] == "X":
            stack.append(x)
        elif s[i] == "+":
            a = stack.pop()
            b = stack.pop()
            stack.append(a + b)
        elif s[i] == "min":
            a = stack.pop()
            b = stack.pop()
            stack.append(min(a, b))
        elif s[i] == "max":
            a = stack.pop()
            b = stack.pop()
            stack.append(max(a, b))
        else:
            stack.append(int(s[i]))
    return stack[0]

while r-l > 1:
    x = (l + r) >> 1
    if solve(x) >= y: r = x
    else: l = x

if solve(r) == y:
    print(r)
else:
    print(-1)
0