結果

問題 No.2927 Reverse Polish Equation
ユーザー Basin-BugBasin-Bug
提出日時 2024-10-12 17:19:42
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 667 ms / 2,000 ms
コード長 862 bytes
コンパイル時間 288 ms
コンパイル使用メモリ 82,372 KB
実行使用メモリ 129,544 KB
最終ジャッジ日時 2024-10-16 00:30:29
合計ジャッジ時間 14,792 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
52,352 KB
testcase_01 AC 39 ms
52,096 KB
testcase_02 AC 40 ms
52,480 KB
testcase_03 AC 38 ms
52,096 KB
testcase_04 AC 37 ms
51,968 KB
testcase_05 AC 38 ms
52,224 KB
testcase_06 AC 37 ms
52,096 KB
testcase_07 AC 111 ms
75,776 KB
testcase_08 AC 100 ms
76,544 KB
testcase_09 AC 127 ms
76,800 KB
testcase_10 AC 66 ms
68,480 KB
testcase_11 AC 127 ms
76,796 KB
testcase_12 AC 326 ms
84,160 KB
testcase_13 AC 435 ms
92,284 KB
testcase_14 AC 356 ms
86,784 KB
testcase_15 AC 444 ms
92,032 KB
testcase_16 AC 268 ms
79,864 KB
testcase_17 AC 500 ms
97,592 KB
testcase_18 AC 573 ms
103,552 KB
testcase_19 AC 192 ms
77,148 KB
testcase_20 AC 494 ms
97,280 KB
testcase_21 AC 667 ms
111,456 KB
testcase_22 AC 232 ms
78,472 KB
testcase_23 AC 37 ms
51,840 KB
testcase_24 AC 37 ms
51,712 KB
testcase_25 AC 35 ms
52,480 KB
testcase_26 AC 36 ms
51,968 KB
testcase_27 AC 547 ms
104,192 KB
testcase_28 AC 521 ms
100,636 KB
testcase_29 AC 220 ms
78,368 KB
testcase_30 AC 570 ms
103,808 KB
testcase_31 AC 144 ms
76,672 KB
testcase_32 AC 269 ms
80,384 KB
testcase_33 AC 359 ms
86,588 KB
testcase_34 AC 393 ms
89,984 KB
testcase_35 AC 73 ms
69,504 KB
testcase_36 AC 484 ms
103,552 KB
testcase_37 AC 269 ms
83,944 KB
testcase_38 AC 564 ms
107,928 KB
testcase_39 AC 380 ms
88,192 KB
testcase_40 AC 500 ms
103,424 KB
testcase_41 AC 500 ms
97,536 KB
testcase_42 AC 372 ms
123,160 KB
testcase_43 AC 387 ms
124,012 KB
testcase_44 AC 371 ms
124,092 KB
testcase_45 AC 347 ms
129,544 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]

if "X" not in S:
  if int(solve(S, 0)) == Y:
    print(0)
  else:
    print(-1)
  exit()

left = -1
right = 10 ** 14
while left + 1 < right:
  mid = (left + right) // 2
  res = int(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