結果

問題 No.2927 Reverse Polish Equation
ユーザー rlangevinrlangevin
提出日時 2024-10-31 08:56:38
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 699 ms / 2,000 ms
コード長 878 bytes
コンパイル時間 770 ms
コンパイル使用メモリ 82,308 KB
実行使用メモリ 132,228 KB
最終ジャッジ日時 2024-10-31 08:56:54
合計ジャッジ時間 14,489 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
54,040 KB
testcase_01 AC 41 ms
53,568 KB
testcase_02 AC 40 ms
54,088 KB
testcase_03 AC 41 ms
54,092 KB
testcase_04 AC 40 ms
53,948 KB
testcase_05 AC 41 ms
52,592 KB
testcase_06 AC 40 ms
52,944 KB
testcase_07 AC 60 ms
65,860 KB
testcase_08 AC 66 ms
66,356 KB
testcase_09 AC 61 ms
66,916 KB
testcase_10 AC 56 ms
66,328 KB
testcase_11 AC 64 ms
69,164 KB
testcase_12 AC 226 ms
81,288 KB
testcase_13 AC 350 ms
87,112 KB
testcase_14 AC 260 ms
83,028 KB
testcase_15 AC 332 ms
86,724 KB
testcase_16 AC 157 ms
78,260 KB
testcase_17 AC 433 ms
90,080 KB
testcase_18 AC 492 ms
94,104 KB
testcase_19 AC 100 ms
73,968 KB
testcase_20 AC 441 ms
90,060 KB
testcase_21 AC 589 ms
99,172 KB
testcase_22 AC 120 ms
76,724 KB
testcase_23 AC 39 ms
52,004 KB
testcase_24 AC 39 ms
53,096 KB
testcase_25 AC 40 ms
52,828 KB
testcase_26 AC 39 ms
52,268 KB
testcase_27 AC 523 ms
94,836 KB
testcase_28 AC 449 ms
92,020 KB
testcase_29 AC 125 ms
76,592 KB
testcase_30 AC 531 ms
94,448 KB
testcase_31 AC 106 ms
76,096 KB
testcase_32 AC 172 ms
78,780 KB
testcase_33 AC 262 ms
83,196 KB
testcase_34 AC 311 ms
85,220 KB
testcase_35 AC 57 ms
64,904 KB
testcase_36 AC 500 ms
94,924 KB
testcase_37 AC 228 ms
81,056 KB
testcase_38 AC 699 ms
97,432 KB
testcase_39 AC 278 ms
83,796 KB
testcase_40 AC 532 ms
94,024 KB
testcase_41 AC 419 ms
90,364 KB
testcase_42 AC 448 ms
128,804 KB
testcase_43 AC 489 ms
125,464 KB
testcase_44 AC 438 ms
125,892 KB
testcase_45 AC 443 ms
132,228 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

def f(x):
    stack = []
    for s in S:
        if s == "+":
            a = stack.pop()
            b = stack.pop()
            stack.append(a+b)
        elif s == "max":
            a = stack.pop()
            b = stack.pop()
            stack.append(max(a,b))
        elif s == "min":
            a = stack.pop()
            b = stack.pop()
            stack.append(min(a,b))
        elif s == "X":
            stack.append(x)
        else:
            stack.append(int(s))            
    
    return stack[-1]
        
            

def BinarySearch(yes = 10 ** 18, no = -1):
    while abs(yes - no) != 1:
        mid = (yes + no)//2
        if f(mid) >= Y:
            yes = mid
        else:
            no = mid
    return yes

ans = BinarySearch()
print(ans) if ans <= 10 ** 15 and f(ans) == Y else print(-1)
0