結果
問題 | No.2927 Reverse Polish Equation |
ユーザー | Basin-Bug |
提出日時 | 2024-10-12 16:58:11 |
言語 | PyPy3 (7.3.15) |
結果 |
WA
|
実行時間 | - |
コード長 | 636 bytes |
コンパイル時間 | 363 ms |
コンパイル使用メモリ | 82,592 KB |
実行使用メモリ | 325,996 KB |
最終ジャッジ日時 | 2024-10-16 00:28:50 |
合計ジャッジ時間 | 4,956 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 40 ms
57,472 KB |
testcase_01 | AC | 44 ms
52,608 KB |
testcase_02 | AC | 43 ms
52,992 KB |
testcase_03 | WA | - |
testcase_04 | AC | 44 ms
52,608 KB |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | AC | 137 ms
77,400 KB |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | AC | 196 ms
80,256 KB |
testcase_12 | TLE | - |
testcase_13 | -- | - |
testcase_14 | -- | - |
testcase_15 | -- | - |
testcase_16 | -- | - |
testcase_17 | -- | - |
testcase_18 | -- | - |
testcase_19 | -- | - |
testcase_20 | -- | - |
testcase_21 | -- | - |
testcase_22 | -- | - |
testcase_23 | -- | - |
testcase_24 | -- | - |
testcase_25 | -- | - |
testcase_26 | -- | - |
testcase_27 | -- | - |
testcase_28 | -- | - |
testcase_29 | -- | - |
testcase_30 | -- | - |
testcase_31 | -- | - |
testcase_32 | -- | - |
testcase_33 | -- | - |
testcase_34 | -- | - |
testcase_35 | -- | - |
testcase_36 | -- | - |
testcase_37 | -- | - |
testcase_38 | -- | - |
testcase_39 | -- | - |
testcase_40 | -- | - |
testcase_41 | -- | - |
testcase_42 | -- | - |
testcase_43 | -- | - |
testcase_44 | -- | - |
testcase_45 | -- | - |
ソースコード
Q, Y = map(int, input().split()) S = list(map(str, input().split())) stack = [] for i in S: if i == "X" or (i != "max" and i != "min" and i != "+"): stack.append(i) else: p = stack.pop() q = stack.pop() if i == "+": stack.append(p + i + q) else: stack.append(i + "(" + p + "," + q + ")") que = stack[-1] left = -1 right = 10 ** 8 + 1 while left + 1 < right: mid = (left + right) // 2 que2 = que.replace("X", str(mid)) if eval(que2) == Y: right = mid elif eval(que2) < Y: left = mid else: right = mid if eval(que.replace("X", str(right))) == Y: print(right) else: print(-1)