結果

問題 No.2927 Reverse Polish Equation
ユーザー Basin-BugBasin-Bug
提出日時 2024-10-12 17:14:53
言語 PyPy3
(7.3.15)
結果
RE  
実行時間 -
コード長 767 bytes
コンパイル時間 282 ms
コンパイル使用メモリ 82,368 KB
実行使用メモリ 129,388 KB
最終ジャッジ日時 2024-10-16 00:30:00
合計ジャッジ時間 16,410 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 44 ms
51,584 KB
testcase_01 AC 42 ms
51,968 KB
testcase_02 AC 42 ms
52,224 KB
testcase_03 AC 45 ms
51,712 KB
testcase_04 AC 41 ms
52,224 KB
testcase_05 AC 41 ms
52,204 KB
testcase_06 AC 41 ms
52,096 KB
testcase_07 AC 122 ms
75,776 KB
testcase_08 AC 107 ms
76,160 KB
testcase_09 AC 138 ms
77,004 KB
testcase_10 AC 75 ms
67,712 KB
testcase_11 AC 141 ms
77,056 KB
testcase_12 AC 362 ms
84,492 KB
testcase_13 AC 488 ms
91,904 KB
testcase_14 AC 386 ms
86,272 KB
testcase_15 AC 488 ms
91,904 KB
testcase_16 AC 284 ms
80,000 KB
testcase_17 AC 534 ms
97,152 KB
testcase_18 AC 633 ms
103,552 KB
testcase_19 AC 204 ms
77,272 KB
testcase_20 AC 542 ms
97,024 KB
testcase_21 AC 722 ms
111,104 KB
testcase_22 AC 252 ms
78,344 KB
testcase_23 RE -
testcase_24 AC 40 ms
52,352 KB
testcase_25 RE -
testcase_26 AC 42 ms
51,584 KB
testcase_27 AC 608 ms
103,936 KB
testcase_28 AC 584 ms
100,224 KB
testcase_29 AC 243 ms
78,228 KB
testcase_30 AC 643 ms
103,776 KB
testcase_31 AC 159 ms
76,672 KB
testcase_32 AC 292 ms
80,256 KB
testcase_33 AC 400 ms
86,656 KB
testcase_34 AC 432 ms
89,856 KB
testcase_35 AC 77 ms
69,504 KB
testcase_36 AC 536 ms
103,680 KB
testcase_37 AC 284 ms
83,584 KB
testcase_38 AC 617 ms
107,904 KB
testcase_39 AC 442 ms
88,192 KB
testcase_40 AC 578 ms
103,296 KB
testcase_41 AC 575 ms
97,280 KB
testcase_42 AC 396 ms
123,360 KB
testcase_43 AC 410 ms
123,500 KB
testcase_44 AC 396 ms
124,144 KB
testcase_45 AC 379 ms
129,388 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

def solve(S, x):
  stack = []
  for i in S:
    if i == "X" or (i != "max" and i != "min" and i != "+"):
      if i == "X":
        stack.append(x)
      else:
        stack.append(i)
    else:
      p = stack.pop()
      q = stack.pop()
      if i == "+":
        stack.append(int(p) + int(q))
      else:
        if i == "max":
          stack.append(max(int(p), int(q)))
        else:
          stack.append(min(int(p), int(q)))
  return stack[-1]

left = -1
right = 10 ** 14
while left + 1 < right:
  mid = (left + right) // 2
  res = solve(S, mid)
  if res == Y:
    right = mid
  elif res < Y:
    left = mid
  else:
    right = mid

if solve(S, right) == Y:
  print(right)
else:
  print(-1)
0