結果

問題 No.2927 Reverse Polish Equation
ユーザー nikoro256nikoro256
提出日時 2024-10-12 16:47:53
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 543 ms / 2,000 ms
コード長 815 bytes
コンパイル時間 244 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 111,744 KB
最終ジャッジ日時 2024-10-16 00:27:39
合計ジャッジ時間 12,499 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
53,760 KB
testcase_01 AC 42 ms
53,760 KB
testcase_02 AC 43 ms
53,632 KB
testcase_03 AC 43 ms
53,504 KB
testcase_04 AC 42 ms
53,632 KB
testcase_05 AC 44 ms
53,760 KB
testcase_06 AC 45 ms
53,888 KB
testcase_07 AC 88 ms
73,984 KB
testcase_08 AC 71 ms
68,352 KB
testcase_09 AC 93 ms
75,776 KB
testcase_10 AC 73 ms
67,840 KB
testcase_11 AC 101 ms
76,672 KB
testcase_12 AC 253 ms
84,280 KB
testcase_13 AC 339 ms
92,544 KB
testcase_14 AC 259 ms
86,784 KB
testcase_15 AC 331 ms
92,544 KB
testcase_16 AC 213 ms
80,256 KB
testcase_17 AC 422 ms
97,664 KB
testcase_18 AC 478 ms
103,936 KB
testcase_19 AC 154 ms
77,440 KB
testcase_20 AC 421 ms
97,792 KB
testcase_21 AC 543 ms
111,616 KB
testcase_22 AC 169 ms
78,336 KB
testcase_23 AC 46 ms
53,632 KB
testcase_24 AC 44 ms
53,888 KB
testcase_25 AC 43 ms
53,632 KB
testcase_26 AC 44 ms
53,504 KB
testcase_27 AC 499 ms
104,448 KB
testcase_28 AC 439 ms
100,608 KB
testcase_29 AC 155 ms
78,336 KB
testcase_30 AC 480 ms
104,448 KB
testcase_31 AC 123 ms
76,928 KB
testcase_32 AC 200 ms
81,152 KB
testcase_33 AC 267 ms
86,784 KB
testcase_34 AC 326 ms
89,984 KB
testcase_35 AC 66 ms
67,584 KB
testcase_36 AC 446 ms
104,064 KB
testcase_37 AC 214 ms
83,976 KB
testcase_38 AC 521 ms
108,288 KB
testcase_39 AC 276 ms
88,192 KB
testcase_40 AC 432 ms
103,936 KB
testcase_41 AC 425 ms
97,920 KB
testcase_42 AC 278 ms
111,104 KB
testcase_43 AC 280 ms
111,744 KB
testcase_44 AC 297 ms
111,616 KB
testcase_45 AC 253 ms
107,264 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import deque
Q,Y=map(int,input().split())
S=list(map(str,input().split()))

def solve(n):
    # xをnとしたときの答え
    dq=deque()
    for i in range(Q):
        if S[i] == "X":
            dq.append(n)
        elif S[i] == "+":
            p1=dq.pop()
            p2=dq.pop()
            dq.append(p1+p2)
        elif S[i] == "min":
            p1=dq.pop()
            p2=dq.pop()
            dq.append(min(p1,p2))
        elif S[i] == "max":
            p1=dq.pop()
            p2=dq.pop()
            dq.append(max(p1,p2))
        else:
            dq.append(int(S[i]))
    return dq[0]

left, right= -1, 10**15
while right - left > 1:
    mid=(right+left)//2
    if solve(mid)>=Y:
        right=mid
    else:
        left=mid
if solve(right)!=Y:
    print(-1)
    exit(0)
print(right)
0