結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 33 ms
53,484 KB
testcase_01 AC 36 ms
52,600 KB
testcase_02 AC 34 ms
52,456 KB
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 AC 39 ms
59,532 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
52,352 KB
testcase_24 WA -
testcase_25 AC 33 ms
53,504 KB
testcase_26 AC 33 ms
53,356 KB
testcase_27 WA -
testcase_28 WA -
testcase_29 WA -
testcase_30 WA -
testcase_31 AC 55 ms
69,024 KB
testcase_32 WA -
testcase_33 WA -
testcase_34 WA -
testcase_35 WA -
testcase_36 AC 89 ms
94,412 KB
testcase_37 AC 214 ms
81,060 KB
testcase_38 AC 486 ms
97,552 KB
testcase_39 AC 245 ms
84,128 KB
testcase_40 AC 403 ms
94,436 KB
testcase_41 AC 374 ms
90,288 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
print(l)
0