結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
51,968 KB
testcase_01 AC 39 ms
52,096 KB
testcase_02 AC 42 ms
51,840 KB
testcase_03 AC 39 ms
51,968 KB
testcase_04 AC 37 ms
51,968 KB
testcase_05 AC 39 ms
52,352 KB
testcase_06 AC 40 ms
51,840 KB
testcase_07 AC 116 ms
75,904 KB
testcase_08 AC 101 ms
76,288 KB
testcase_09 AC 129 ms
76,288 KB
testcase_10 AC 69 ms
67,968 KB
testcase_11 AC 133 ms
76,800 KB
testcase_12 AC 340 ms
84,172 KB
testcase_13 AC 452 ms
92,288 KB
testcase_14 AC 347 ms
86,272 KB
testcase_15 AC 449 ms
92,160 KB
testcase_16 AC 262 ms
79,744 KB
testcase_17 AC 498 ms
97,152 KB
testcase_18 AC 576 ms
103,296 KB
testcase_19 AC 193 ms
77,536 KB
testcase_20 AC 494 ms
97,024 KB
testcase_21 AC 659 ms
111,232 KB
testcase_22 AC 229 ms
78,480 KB
testcase_23 WA -
testcase_24 AC 38 ms
51,712 KB
testcase_25 WA -
testcase_26 AC 38 ms
51,968 KB
testcase_27 AC 561 ms
104,064 KB
testcase_28 AC 528 ms
100,224 KB
testcase_29 AC 221 ms
78,360 KB
testcase_30 AC 585 ms
103,424 KB
testcase_31 AC 142 ms
76,672 KB
testcase_32 AC 278 ms
80,256 KB
testcase_33 AC 371 ms
86,272 KB
testcase_34 AC 392 ms
89,728 KB
testcase_35 AC 77 ms
69,760 KB
testcase_36 AC 515 ms
103,808 KB
testcase_37 AC 259 ms
83,584 KB
testcase_38 AC 570 ms
107,776 KB
testcase_39 AC 379 ms
88,064 KB
testcase_40 AC 510 ms
103,424 KB
testcase_41 AC 498 ms
97,536 KB
testcase_42 AC 370 ms
123,100 KB
testcase_43 AC 378 ms
124,140 KB
testcase_44 AC 361 ms
124,020 KB
testcase_45 AC 353 ms
129,768 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 = 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