結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
51,712 KB
testcase_01 AC 38 ms
51,968 KB
testcase_02 AC 37 ms
51,840 KB
testcase_03 AC 38 ms
52,096 KB
testcase_04 AC 38 ms
52,096 KB
testcase_05 AC 38 ms
51,840 KB
testcase_06 AC 38 ms
51,712 KB
testcase_07 AC 120 ms
76,032 KB
testcase_08 AC 101 ms
75,904 KB
testcase_09 AC 133 ms
77,184 KB
testcase_10 AC 74 ms
67,968 KB
testcase_11 AC 132 ms
76,800 KB
testcase_12 AC 341 ms
84,036 KB
testcase_13 AC 446 ms
91,904 KB
testcase_14 AC 353 ms
86,784 KB
testcase_15 AC 443 ms
92,032 KB
testcase_16 AC 263 ms
80,000 KB
testcase_17 AC 502 ms
97,152 KB
testcase_18 AC 583 ms
103,552 KB
testcase_19 AC 189 ms
77,532 KB
testcase_20 AC 504 ms
97,408 KB
testcase_21 AC 680 ms
111,232 KB
testcase_22 AC 241 ms
78,344 KB
testcase_23 WA -
testcase_24 AC 37 ms
51,968 KB
testcase_25 WA -
testcase_26 AC 39 ms
52,096 KB
testcase_27 AC 553 ms
103,936 KB
testcase_28 AC 540 ms
100,352 KB
testcase_29 AC 221 ms
78,632 KB
testcase_30 AC 580 ms
103,424 KB
testcase_31 AC 146 ms
76,800 KB
testcase_32 AC 260 ms
80,384 KB
testcase_33 AC 378 ms
86,272 KB
testcase_34 AC 392 ms
89,856 KB
testcase_35 AC 73 ms
69,504 KB
testcase_36 AC 494 ms
103,808 KB
testcase_37 AC 262 ms
84,332 KB
testcase_38 AC 561 ms
107,648 KB
testcase_39 AC 404 ms
87,808 KB
testcase_40 AC 499 ms
103,296 KB
testcase_41 AC 495 ms
97,536 KB
testcase_42 AC 364 ms
123,356 KB
testcase_43 AC 380 ms
124,140 KB
testcase_44 AC 369 ms
124,140 KB
testcase_45 AC 362 ms
129,420 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