結果

問題 No.2927 Reverse Polish Equation
ユーザー noriaokinoriaoki
提出日時 2024-10-12 20:54:28
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 413 ms / 2,000 ms
コード長 673 bytes
コンパイル時間 203 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 146,080 KB
最終ジャッジ日時 2024-10-16 00:31:15
合計ジャッジ時間 9,978 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
51,456 KB
testcase_01 AC 41 ms
51,712 KB
testcase_02 AC 44 ms
52,352 KB
testcase_03 AC 41 ms
52,096 KB
testcase_04 AC 42 ms
51,712 KB
testcase_05 AC 41 ms
51,712 KB
testcase_06 AC 41 ms
51,840 KB
testcase_07 AC 69 ms
66,560 KB
testcase_08 AC 67 ms
65,536 KB
testcase_09 AC 72 ms
67,712 KB
testcase_10 AC 56 ms
61,568 KB
testcase_11 AC 77 ms
69,504 KB
testcase_12 AC 173 ms
80,896 KB
testcase_13 AC 233 ms
85,504 KB
testcase_14 AC 194 ms
82,304 KB
testcase_15 AC 213 ms
85,376 KB
testcase_16 AC 137 ms
77,824 KB
testcase_17 AC 261 ms
89,344 KB
testcase_18 AC 311 ms
92,672 KB
testcase_19 AC 109 ms
76,032 KB
testcase_20 AC 264 ms
88,960 KB
testcase_21 AC 356 ms
97,408 KB
testcase_22 AC 119 ms
76,416 KB
testcase_23 AC 40 ms
51,840 KB
testcase_24 AC 41 ms
51,456 KB
testcase_25 AC 40 ms
52,096 KB
testcase_26 AC 40 ms
51,584 KB
testcase_27 AC 348 ms
93,056 KB
testcase_28 AC 354 ms
91,008 KB
testcase_29 AC 134 ms
76,416 KB
testcase_30 AC 392 ms
92,928 KB
testcase_31 AC 93 ms
72,192 KB
testcase_32 AC 166 ms
78,464 KB
testcase_33 AC 220 ms
82,048 KB
testcase_34 AC 252 ms
84,224 KB
testcase_35 AC 63 ms
64,000 KB
testcase_36 AC 276 ms
93,184 KB
testcase_37 AC 180 ms
80,768 KB
testcase_38 AC 413 ms
95,232 KB
testcase_39 AC 230 ms
83,200 KB
testcase_40 AC 360 ms
93,184 KB
testcase_41 AC 341 ms
88,960 KB
testcase_42 AC 313 ms
146,080 KB
testcase_43 AC 358 ms
144,540 KB
testcase_44 AC 380 ms
144,476 KB
testcase_45 AC 303 ms
143,972 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

q, y = map(int, input().split())
s = input().split()

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


l = -1
r = y+1

while l + 1 < r:
    mid = (l + r)//2
    if calc(mid) < y:
        l = mid
    else:
        r = mid
if calc(r) == y:
    print(r)
else:
    print(-1)
0