結果

問題 No.2927 Reverse Polish Equation
ユーザー flippergoflippergo
提出日時 2024-11-12 08:41:20
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 562 ms / 2,000 ms
コード長 697 bytes
コンパイル時間 739 ms
コンパイル使用メモリ 82,408 KB
実行使用メモリ 129,576 KB
最終ジャッジ日時 2024-11-12 08:41:36
合計ジャッジ時間 15,403 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
51,968 KB
testcase_01 AC 42 ms
51,584 KB
testcase_02 AC 37 ms
52,096 KB
testcase_03 AC 36 ms
52,480 KB
testcase_04 AC 38 ms
52,352 KB
testcase_05 AC 44 ms
52,352 KB
testcase_06 AC 37 ms
52,096 KB
testcase_07 AC 72 ms
71,808 KB
testcase_08 AC 64 ms
67,712 KB
testcase_09 AC 71 ms
72,064 KB
testcase_10 AC 57 ms
64,512 KB
testcase_11 AC 85 ms
76,544 KB
testcase_12 AC 277 ms
81,292 KB
testcase_13 AC 348 ms
86,724 KB
testcase_14 AC 261 ms
83,056 KB
testcase_15 AC 326 ms
86,272 KB
testcase_16 AC 198 ms
78,556 KB
testcase_17 AC 397 ms
90,076 KB
testcase_18 AC 479 ms
94,592 KB
testcase_19 AC 122 ms
76,388 KB
testcase_20 AC 431 ms
89,728 KB
testcase_21 AC 562 ms
99,408 KB
testcase_22 AC 141 ms
76,764 KB
testcase_23 AC 36 ms
51,584 KB
testcase_24 AC 37 ms
52,608 KB
testcase_25 AC 37 ms
51,584 KB
testcase_26 AC 43 ms
51,968 KB
testcase_27 AC 485 ms
94,492 KB
testcase_28 AC 429 ms
91,648 KB
testcase_29 AC 141 ms
76,760 KB
testcase_30 AC 477 ms
94,720 KB
testcase_31 AC 111 ms
76,800 KB
testcase_32 AC 182 ms
78,592 KB
testcase_33 AC 255 ms
82,820 KB
testcase_34 AC 332 ms
84,864 KB
testcase_35 AC 54 ms
64,768 KB
testcase_36 AC 456 ms
94,080 KB
testcase_37 AC 206 ms
81,536 KB
testcase_38 AC 547 ms
96,896 KB
testcase_39 AC 275 ms
84,460 KB
testcase_40 AC 449 ms
94,080 KB
testcase_41 AC 447 ms
90,112 KB
testcase_42 AC 388 ms
122,560 KB
testcase_43 AC 418 ms
126,236 KB
testcase_44 AC 439 ms
125,908 KB
testcase_45 AC 376 ms
129,576 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N,Y = map(int,input().split())
S = list(input().split())
Op = ["+","min","max"]
def f(x):
    A = []
    for i in range(N):
        if S[i] not in Op:
            if S[i]=="X":
                A.append(x)
            else:
                A.append(int(S[i]))
        else:
            a = A.pop()
            b = A.pop()
            if S[i]=="+":
                A.append(a+b)
            elif S[i]=="min":
                A.append(min(a,b))
            else:
                A.append(max(a,b))
    return A[0]
low = -1
high = 10**13+10
while high-low>1:
    mid = (high+low)//2
    if f(mid)>=Y:
        high = mid
    else:
        low = mid
x = high
if f(x)==Y:
    print(x)
else:
    print(-1)
0