結果

問題 No.2927 Reverse Polish Equation
ユーザー mymelochanmymelochan
提出日時 2024-06-13 20:43:03
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 890 ms / 2,000 ms
コード長 676 bytes
コンパイル時間 352 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 120,216 KB
最終ジャッジ日時 2024-10-16 00:20:07
合計ジャッジ時間 15,949 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
51,840 KB
testcase_01 AC 41 ms
51,968 KB
testcase_02 AC 40 ms
51,840 KB
testcase_03 AC 40 ms
52,224 KB
testcase_04 AC 40 ms
51,968 KB
testcase_05 AC 40 ms
52,096 KB
testcase_06 AC 40 ms
52,224 KB
testcase_07 AC 85 ms
73,344 KB
testcase_08 AC 75 ms
69,248 KB
testcase_09 AC 87 ms
73,472 KB
testcase_10 AC 72 ms
67,584 KB
testcase_11 AC 95 ms
76,032 KB
testcase_12 AC 303 ms
81,280 KB
testcase_13 AC 450 ms
85,760 KB
testcase_14 AC 347 ms
82,432 KB
testcase_15 AC 437 ms
86,016 KB
testcase_16 AC 207 ms
78,336 KB
testcase_17 AC 546 ms
88,832 KB
testcase_18 AC 669 ms
92,672 KB
testcase_19 AC 134 ms
76,544 KB
testcase_20 AC 542 ms
89,088 KB
testcase_21 AC 798 ms
98,176 KB
testcase_22 AC 161 ms
76,972 KB
testcase_23 AC 41 ms
51,968 KB
testcase_24 AC 39 ms
51,968 KB
testcase_25 AC 40 ms
51,968 KB
testcase_26 AC 41 ms
51,968 KB
testcase_27 AC 684 ms
93,440 KB
testcase_28 AC 597 ms
90,880 KB
testcase_29 AC 164 ms
76,800 KB
testcase_30 AC 672 ms
92,800 KB
testcase_31 AC 126 ms
76,416 KB
testcase_32 AC 225 ms
78,848 KB
testcase_33 AC 338 ms
82,176 KB
testcase_34 AC 404 ms
84,224 KB
testcase_35 AC 78 ms
69,888 KB
testcase_36 AC 632 ms
93,696 KB
testcase_37 AC 312 ms
80,768 KB
testcase_38 AC 890 ms
95,744 KB
testcase_39 AC 365 ms
83,200 KB
testcase_40 AC 715 ms
92,928 KB
testcase_41 AC 556 ms
89,088 KB
testcase_42 AC 439 ms
120,216 KB
testcase_43 AC 473 ms
109,924 KB
testcase_44 AC 516 ms
109,672 KB
testcase_45 AC 411 ms
118,108 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

inf = 1<<60

ok = inf
ng = -1
ans = None
while ok-ng > 1:
    X = (ok+ng)//2
    A = []
    for s in S:
        if s.isdecimal():
            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()
        elif s == "max":
            A[-2] = max(A[-2],A[-1])
            A.pop()
    
    if A[0] >= Y:
        ok = X
        ans = A[0]
    else:
        ng = X

if abs(ok) == inf:
    print(-1)
else:
    if ans == Y:
        print(ok)
    else:
        print(-1)
0