結果

問題 No.2927 Reverse Polish Equation
ユーザー CecilCecil
提出日時 2024-10-17 21:02:53
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 476 ms / 2,000 ms
コード長 1,043 bytes
コンパイル時間 3,884 ms
コンパイル使用メモリ 82,316 KB
実行使用メモリ 123,172 KB
最終ジャッジ日時 2024-10-17 21:03:09
合計ジャッジ時間 11,585 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 33 ms
52,820 KB
testcase_01 AC 33 ms
53,132 KB
testcase_02 AC 31 ms
52,480 KB
testcase_03 AC 30 ms
52,776 KB
testcase_04 AC 31 ms
53,036 KB
testcase_05 AC 32 ms
53,292 KB
testcase_06 AC 32 ms
52,836 KB
testcase_07 AC 76 ms
76,364 KB
testcase_08 AC 38 ms
60,284 KB
testcase_09 AC 80 ms
76,096 KB
testcase_10 AC 51 ms
65,756 KB
testcase_11 AC 81 ms
76,180 KB
testcase_12 AC 222 ms
81,628 KB
testcase_13 AC 293 ms
86,868 KB
testcase_14 AC 261 ms
82,944 KB
testcase_15 AC 297 ms
86,664 KB
testcase_16 AC 170 ms
78,696 KB
testcase_17 AC 347 ms
90,204 KB
testcase_18 AC 421 ms
94,444 KB
testcase_19 AC 123 ms
76,856 KB
testcase_20 AC 355 ms
90,168 KB
testcase_21 AC 476 ms
99,232 KB
testcase_22 AC 163 ms
77,612 KB
testcase_23 AC 33 ms
52,128 KB
testcase_24 AC 32 ms
53,556 KB
testcase_25 AC 31 ms
52,672 KB
testcase_26 AC 30 ms
53,068 KB
testcase_27 AC 416 ms
94,924 KB
testcase_28 AC 392 ms
92,060 KB
testcase_29 AC 151 ms
77,600 KB
testcase_30 AC 431 ms
94,568 KB
testcase_31 AC 51 ms
68,344 KB
testcase_32 AC 172 ms
79,212 KB
testcase_33 AC 248 ms
82,980 KB
testcase_34 AC 298 ms
85,488 KB
testcase_35 AC 53 ms
65,764 KB
testcase_36 AC 87 ms
94,516 KB
testcase_37 AC 192 ms
81,196 KB
testcase_38 AC 463 ms
97,448 KB
testcase_39 AC 258 ms
84,208 KB
testcase_40 AC 402 ms
94,216 KB
testcase_41 AC 351 ms
90,460 KB
testcase_42 AC 320 ms
113,672 KB
testcase_43 AC 309 ms
122,904 KB
testcase_44 AC 332 ms
123,172 KB
testcase_45 AC 329 ms
113,632 KB
権限があれば一括ダウンロードができます

ソースコード

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]

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

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