結果

問題 No.2927 Reverse Polish Equation
ユーザー 寝癖寝癖
提出日時 2024-10-12 16:18:51
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 938 ms / 2,000 ms
コード長 748 bytes
コンパイル時間 393 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 128,408 KB
最終ジャッジ日時 2024-10-16 00:25:47
合計ジャッジ時間 16,749 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
51,968 KB
testcase_01 AC 38 ms
52,352 KB
testcase_02 AC 39 ms
51,840 KB
testcase_03 AC 38 ms
51,968 KB
testcase_04 AC 40 ms
52,608 KB
testcase_05 AC 39 ms
52,096 KB
testcase_06 AC 38 ms
52,608 KB
testcase_07 AC 90 ms
76,160 KB
testcase_08 AC 51 ms
61,952 KB
testcase_09 AC 92 ms
75,648 KB
testcase_10 AC 63 ms
66,432 KB
testcase_11 AC 108 ms
76,316 KB
testcase_12 AC 405 ms
82,176 KB
testcase_13 AC 566 ms
86,016 KB
testcase_14 AC 459 ms
82,552 KB
testcase_15 AC 545 ms
85,888 KB
testcase_16 AC 290 ms
78,656 KB
testcase_17 AC 665 ms
89,444 KB
testcase_18 AC 797 ms
93,056 KB
testcase_19 AC 190 ms
77,376 KB
testcase_20 AC 673 ms
89,216 KB
testcase_21 AC 938 ms
97,408 KB
testcase_22 AC 230 ms
77,648 KB
testcase_23 AC 39 ms
52,096 KB
testcase_24 AC 39 ms
51,968 KB
testcase_25 AC 37 ms
51,840 KB
testcase_26 AC 39 ms
51,584 KB
testcase_27 AC 820 ms
93,440 KB
testcase_28 AC 729 ms
91,008 KB
testcase_29 AC 229 ms
77,804 KB
testcase_30 AC 804 ms
92,928 KB
testcase_31 AC 87 ms
73,856 KB
testcase_32 AC 306 ms
78,904 KB
testcase_33 AC 438 ms
82,856 KB
testcase_34 AC 513 ms
84,864 KB
testcase_35 AC 73 ms
68,864 KB
testcase_36 AC 138 ms
93,056 KB
testcase_37 AC 95 ms
80,512 KB
testcase_38 AC 126 ms
95,744 KB
testcase_39 AC 489 ms
83,456 KB
testcase_40 AC 116 ms
93,056 KB
testcase_41 AC 702 ms
89,384 KB
testcase_42 AC 600 ms
121,356 KB
testcase_43 AC 564 ms
128,156 KB
testcase_44 AC 571 ms
128,408 KB
testcase_45 AC 571 ms
122,196 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

def f(x):
    A = []
    for s in S:
        if s.isdigit():
            A.append(int(s))
        elif s == 'X':
            A.append(x)
        elif s == '+':
            A[-2] += A[-1]
            A.pop()
        elif s == 'min':
            A[-2] = min(A[-2], A[-1])
            A.pop()
        else:
            A[-2] = max(A[-2], A[-1])
            A.pop()
    return A[0]

inf = 10**20
if f(inf) < Y:
    print(-1)
    exit()

if f(0) >= Y:
    if f(0) == Y:
        print(0)
    else:
        print(-1)
    exit()

ng, ok = 0, inf
while abs(ok-ng) > 1:
    mid = (ok+ng)//2
    if f(mid) >= Y:
        ok = mid
    else:
        ng = mid

if f(ok) == Y:
    print(ok)
else:
    print(-1)
0