結果

問題 No.2927 Reverse Polish Equation
ユーザー nouka28nouka28
提出日時 2024-09-07 11:56:55
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 709 ms / 2,000 ms
コード長 500 bytes
コンパイル時間 375 ms
コンパイル使用メモリ 82,284 KB
実行使用メモリ 201,232 KB
最終ジャッジ日時 2024-10-16 00:21:05
合計ジャッジ時間 13,379 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
51,840 KB
testcase_01 AC 40 ms
52,224 KB
testcase_02 AC 40 ms
52,224 KB
testcase_03 AC 39 ms
52,096 KB
testcase_04 AC 42 ms
52,224 KB
testcase_05 AC 43 ms
52,224 KB
testcase_06 AC 42 ms
51,840 KB
testcase_07 AC 83 ms
71,040 KB
testcase_08 AC 72 ms
66,432 KB
testcase_09 AC 83 ms
70,400 KB
testcase_10 AC 74 ms
67,712 KB
testcase_11 AC 87 ms
72,448 KB
testcase_12 AC 250 ms
81,536 KB
testcase_13 AC 351 ms
85,888 KB
testcase_14 AC 274 ms
82,560 KB
testcase_15 AC 337 ms
85,504 KB
testcase_16 AC 179 ms
78,080 KB
testcase_17 AC 430 ms
89,088 KB
testcase_18 AC 499 ms
93,184 KB
testcase_19 AC 124 ms
76,528 KB
testcase_20 AC 423 ms
89,452 KB
testcase_21 AC 594 ms
97,536 KB
testcase_22 AC 137 ms
76,416 KB
testcase_23 AC 39 ms
52,096 KB
testcase_24 AC 41 ms
52,096 KB
testcase_25 AC 41 ms
51,712 KB
testcase_26 AC 40 ms
51,968 KB
testcase_27 AC 530 ms
93,312 KB
testcase_28 AC 476 ms
90,948 KB
testcase_29 AC 145 ms
76,672 KB
testcase_30 AC 511 ms
92,800 KB
testcase_31 AC 107 ms
73,344 KB
testcase_32 AC 187 ms
78,668 KB
testcase_33 AC 271 ms
82,572 KB
testcase_34 AC 319 ms
84,992 KB
testcase_35 AC 79 ms
68,992 KB
testcase_36 AC 506 ms
93,112 KB
testcase_37 AC 254 ms
80,968 KB
testcase_38 AC 709 ms
95,488 KB
testcase_39 AC 291 ms
83,292 KB
testcase_40 AC 580 ms
92,928 KB
testcase_41 AC 427 ms
89,088 KB
testcase_42 AC 470 ms
201,232 KB
testcase_43 AC 421 ms
197,816 KB
testcase_44 AC 459 ms
197,748 KB
testcase_45 AC 491 ms
198,408 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

q,y=map(int,input().split())

s=input().split()

def f(x:int):
    d=[]
    for i in s:
        if i=="X":
            d.append(x)
        elif i=="min":
            d.append(min(d.pop(),d.pop()))
        elif i=="max":
            d.append(max(d.pop(),d.pop()))
        elif i=="+":
            d.append(d.pop()+d.pop())
        else:
            d.append(int(i))
    return d[0]

l=-1
r=10**18

while r-l>1:
    m=(l+r)//2
    if f(m)<y:l=m
    else:r=m
if f(r)==y:
    print(r)
else:
    print(-1)
0