結果

問題 No.2927 Reverse Polish Equation
ユーザー titiatitia
提出日時 2024-11-17 03:52:54
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 716 ms / 2,000 ms
コード長 795 bytes
コンパイル時間 358 ms
コンパイル使用メモリ 82,816 KB
実行使用メモリ 132,904 KB
最終ジャッジ日時 2024-11-17 03:53:08
合計ジャッジ時間 13,632 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 43 ms
51,968 KB
testcase_01 AC 42 ms
51,840 KB
testcase_02 AC 44 ms
51,968 KB
testcase_03 AC 43 ms
51,968 KB
testcase_04 AC 39 ms
52,096 KB
testcase_05 AC 44 ms
52,096 KB
testcase_06 AC 39 ms
52,096 KB
testcase_07 AC 86 ms
74,240 KB
testcase_08 AC 46 ms
59,136 KB
testcase_09 AC 102 ms
76,032 KB
testcase_10 AC 69 ms
67,200 KB
testcase_11 AC 101 ms
76,032 KB
testcase_12 AC 261 ms
81,920 KB
testcase_13 AC 378 ms
86,144 KB
testcase_14 AC 310 ms
82,560 KB
testcase_15 AC 364 ms
85,888 KB
testcase_16 AC 199 ms
78,208 KB
testcase_17 AC 455 ms
88,960 KB
testcase_18 AC 547 ms
92,800 KB
testcase_19 AC 142 ms
76,544 KB
testcase_20 AC 445 ms
88,832 KB
testcase_21 AC 637 ms
97,664 KB
testcase_22 AC 162 ms
77,056 KB
testcase_23 AC 40 ms
51,584 KB
testcase_24 AC 41 ms
52,096 KB
testcase_25 AC 40 ms
51,712 KB
testcase_26 AC 41 ms
52,096 KB
testcase_27 AC 577 ms
93,824 KB
testcase_28 AC 468 ms
91,008 KB
testcase_29 AC 158 ms
76,544 KB
testcase_30 AC 546 ms
92,928 KB
testcase_31 AC 63 ms
66,176 KB
testcase_32 AC 206 ms
78,720 KB
testcase_33 AC 289 ms
82,304 KB
testcase_34 AC 332 ms
84,608 KB
testcase_35 AC 80 ms
69,248 KB
testcase_36 AC 100 ms
93,312 KB
testcase_37 AC 275 ms
80,896 KB
testcase_38 AC 716 ms
95,872 KB
testcase_39 AC 322 ms
83,328 KB
testcase_40 AC 564 ms
92,800 KB
testcase_41 AC 472 ms
88,960 KB
testcase_42 AC 419 ms
131,092 KB
testcase_43 AC 446 ms
126,916 KB
testcase_44 AC 443 ms
127,448 KB
testcase_45 AC 408 ms
132,904 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

def calc(x):
    ANS=[]
    for s in S:
        if s=="X":
            ANS.append(x)
        elif s=="+":
            k=ANS.pop()
            l=ANS.pop()
            ANS.append(k+l)
        elif s=="max":
            k=ANS.pop()
            l=ANS.pop()
            ANS.append(max(k,l))
        elif s=="min":
            k=ANS.pop()
            l=ANS.pop()
            ANS.append(min(k,l))
        else:
            u=int(s)
            ANS.append(u)

    return ANS[-1]

if calc(0)==Y:
    print(0)
    exit()
elif calc(0)>Y:
    print(-1)
    exit()

OK=0
NG=10**18

while NG>OK+1:
    mid=(OK+NG)//2

    if calc(mid)<Y:
        OK=mid
    else:
        NG=mid

if calc(OK)==Y:
    print(OK)
elif calc(NG)==Y:
    print(NG)
else:
    print(-1)
0