結果

問題 No.2927 Reverse Polish Equation
ユーザー detteiuudetteiuu
提出日時 2024-10-12 16:55:10
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 624 ms / 2,000 ms
コード長 953 bytes
コンパイル時間 164 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 131,012 KB
最終ジャッジ日時 2024-10-16 00:28:27
合計ジャッジ時間 13,476 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
51,840 KB
testcase_01 AC 37 ms
51,968 KB
testcase_02 AC 39 ms
51,968 KB
testcase_03 AC 38 ms
52,096 KB
testcase_04 AC 38 ms
51,968 KB
testcase_05 AC 39 ms
52,224 KB
testcase_06 AC 40 ms
52,224 KB
testcase_07 AC 74 ms
69,376 KB
testcase_08 AC 83 ms
73,728 KB
testcase_09 AC 79 ms
70,272 KB
testcase_10 AC 61 ms
64,640 KB
testcase_11 AC 84 ms
73,728 KB
testcase_12 AC 293 ms
81,808 KB
testcase_13 AC 394 ms
86,272 KB
testcase_14 AC 313 ms
82,944 KB
testcase_15 AC 365 ms
86,144 KB
testcase_16 AC 217 ms
78,592 KB
testcase_17 AC 478 ms
89,728 KB
testcase_18 AC 545 ms
94,080 KB
testcase_19 AC 161 ms
76,928 KB
testcase_20 AC 478 ms
89,728 KB
testcase_21 AC 624 ms
98,816 KB
testcase_22 AC 187 ms
77,440 KB
testcase_23 AC 40 ms
51,968 KB
testcase_24 AC 39 ms
52,352 KB
testcase_25 AC 38 ms
51,712 KB
testcase_26 AC 40 ms
52,224 KB
testcase_27 AC 584 ms
94,592 KB
testcase_28 AC 515 ms
92,288 KB
testcase_29 AC 187 ms
77,696 KB
testcase_30 AC 541 ms
94,080 KB
testcase_31 AC 159 ms
76,800 KB
testcase_32 AC 230 ms
78,976 KB
testcase_33 AC 312 ms
82,560 KB
testcase_34 AC 373 ms
85,248 KB
testcase_35 AC 65 ms
65,152 KB
testcase_36 AC 587 ms
94,592 KB
testcase_37 AC 103 ms
80,768 KB
testcase_38 AC 146 ms
97,152 KB
testcase_39 AC 334 ms
83,584 KB
testcase_40 AC 139 ms
94,208 KB
testcase_41 AC 457 ms
89,728 KB
testcase_42 AC 461 ms
131,012 KB
testcase_43 AC 444 ms
126,776 KB
testcase_44 AC 475 ms
127,148 KB
testcase_45 AC 438 ms
130,952 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

def func(x):
    stack = []
    for op in S:
        if op == "+":
            a, b = int(stack.pop()), int(stack.pop())
            stack.append(a+b)
        elif op == "min":
            a, b = int(stack.pop()), int(stack.pop())
            stack.append(min(a, b))
        elif op == "max":
            a, b = int(stack.pop()), int(stack.pop())
            stack.append(max(a, b))
        elif op == "X":
            stack.append(x)
        else:
            stack.append(int(op))
    return stack[0]

INF = 10**18
minus = func(-INF)
plus = func(INF)

if Y < minus or plus < Y:
    exit(print(-1))

left = -INF
right = INF
while left+1 < right:
    mid = (left+right)//2
    if func(mid) < Y:
        left = mid
    else:
        right = mid

if func(right) == Y:
    if right >= 0:
        print(right)
    elif func(0) == Y:
        print(0)
    else:
        print(-1)
else:
    print(-1)
0