結果

問題 No.2927 Reverse Polish Equation
ユーザー うにれうにれ
提出日時 2024-10-12 17:22:54
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 627 ms / 2,000 ms
コード長 615 bytes
コンパイル時間 319 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 200,404 KB
最終ジャッジ日時 2024-10-16 00:30:51
合計ジャッジ時間 12,511 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
51,840 KB
testcase_01 AC 37 ms
52,096 KB
testcase_02 AC 39 ms
51,968 KB
testcase_03 AC 40 ms
52,224 KB
testcase_04 AC 36 ms
51,968 KB
testcase_05 AC 40 ms
51,712 KB
testcase_06 AC 38 ms
51,840 KB
testcase_07 AC 76 ms
70,656 KB
testcase_08 AC 65 ms
65,920 KB
testcase_09 AC 80 ms
70,272 KB
testcase_10 AC 74 ms
68,096 KB
testcase_11 AC 83 ms
72,064 KB
testcase_12 AC 234 ms
81,152 KB
testcase_13 AC 325 ms
86,528 KB
testcase_14 AC 257 ms
82,560 KB
testcase_15 AC 312 ms
86,528 KB
testcase_16 AC 159 ms
78,464 KB
testcase_17 AC 382 ms
90,368 KB
testcase_18 AC 492 ms
93,952 KB
testcase_19 AC 115 ms
76,160 KB
testcase_20 AC 371 ms
89,472 KB
testcase_21 AC 552 ms
98,944 KB
testcase_22 AC 131 ms
76,928 KB
testcase_23 AC 37 ms
51,584 KB
testcase_24 AC 36 ms
51,584 KB
testcase_25 AC 42 ms
51,584 KB
testcase_26 AC 42 ms
51,840 KB
testcase_27 AC 482 ms
94,208 KB
testcase_28 AC 420 ms
92,160 KB
testcase_29 AC 135 ms
76,672 KB
testcase_30 AC 470 ms
94,464 KB
testcase_31 AC 104 ms
73,344 KB
testcase_32 AC 177 ms
78,592 KB
testcase_33 AC 248 ms
82,944 KB
testcase_34 AC 297 ms
84,864 KB
testcase_35 AC 71 ms
68,864 KB
testcase_36 AC 447 ms
94,208 KB
testcase_37 AC 239 ms
80,768 KB
testcase_38 AC 627 ms
97,024 KB
testcase_39 AC 264 ms
83,584 KB
testcase_40 AC 542 ms
93,952 KB
testcase_41 AC 401 ms
90,368 KB
testcase_42 AC 552 ms
200,404 KB
testcase_43 AC 444 ms
197,412 KB
testcase_44 AC 451 ms
197,804 KB
testcase_45 AC 540 ms
198,176 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
mod = 998244353
mod2 = 10**9+7

Q, Y = map(int, input().split())
s = list(input().split())
def f(x):
    A = []
    for i in s:
        if i == "+":
            A.append(A.pop()+A.pop())
        elif i == "min":
            A.append(min(A.pop(), A.pop()))
        elif i == "max":
            A.append(max(A.pop(), A.pop()))
        else:
            if i == "X":
                A.append(x)
            else:
                A.append(int(i))
    return A[0]
ng, ok = -1, 1<<60
while ok - ng > 1:
    m = (ok+ng) // 2
    if f(m) >= Y:ok = m
    else:ng = m
print(ok if ok < 1<<60 and f(ok) == Y else -1)
0