結果

問題 No.2927 Reverse Polish Equation
ユーザー CecilCecil
提出日時 2024-10-17 20:47:32
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 1,025 bytes
コンパイル時間 524 ms
コンパイル使用メモリ 82,384 KB
実行使用メモリ 123,684 KB
最終ジャッジ日時 2024-10-17 20:47:44
合計ジャッジ時間 11,267 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 33 ms
52,820 KB
testcase_01 AC 34 ms
53,372 KB
testcase_02 AC 35 ms
52,596 KB
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 AC 38 ms
59,792 KB
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 AC 32 ms
53,492 KB
testcase_24 WA -
testcase_25 AC 31 ms
52,312 KB
testcase_26 AC 31 ms
53,372 KB
testcase_27 WA -
testcase_28 WA -
testcase_29 WA -
testcase_30 WA -
testcase_31 AC 51 ms
68,372 KB
testcase_32 WA -
testcase_33 WA -
testcase_34 WA -
testcase_35 WA -
testcase_36 AC 83 ms
94,436 KB
testcase_37 AC 204 ms
81,332 KB
testcase_38 AC 448 ms
97,220 KB
testcase_39 AC 229 ms
84,172 KB
testcase_40 AC 381 ms
94,168 KB
testcase_41 AC 362 ms
90,212 KB
testcase_42 WA -
testcase_43 WA -
testcase_44 WA -
testcase_45 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

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

def Reverse_Polish_Notation(S, x):
    stack = list()
    N = len(S)
    for i in range(N):
        if S[i] == "+":
            val = 0
            for i in range(2):
                v = stack.pop()
                val += v
            stack.append(val)
        elif S[i] == "min":
            m = stack.pop()
            n = stack.pop()
            val = min(m, n)
            stack.append(val)
        elif S[i] == "max":
            m = stack.pop()
            n = stack.pop()
            val = max(m, n)
            stack.append(val)
        else:
            if S[i]=="X":
                stack.append(x)
            else:
                stack.append(int(S[i]))
    #print(stack)
    return stack[-1]==Y

if Reverse_Polish_Notation(S,0):
    print(0)
    exit()

l = -1
r = 10**13
while r-l>1:
    mid = (r+l)//2
    if Reverse_Polish_Notation(S, mid):
        l = mid
    else:
        r = mid
if Reverse_Polish_Notation(S,l):
    print(l)
else:
    print(-1)
0