結果

問題 No.2927 Reverse Polish Equation
ユーザー titiatitia
提出日時 2024-11-17 03:52:00
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 764 bytes
コンパイル時間 260 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 133,156 KB
最終ジャッジ日時 2024-11-17 03:52:17
合計ジャッジ時間 15,655 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 43 ms
51,968 KB
testcase_01 AC 42 ms
52,096 KB
testcase_02 AC 41 ms
52,096 KB
testcase_03 AC 40 ms
52,096 KB
testcase_04 WA -
testcase_05 WA -
testcase_06 AC 41 ms
52,096 KB
testcase_07 AC 91 ms
74,240 KB
testcase_08 AC 50 ms
58,880 KB
testcase_09 AC 99 ms
75,904 KB
testcase_10 WA -
testcase_11 WA -
testcase_12 AC 274 ms
81,536 KB
testcase_13 AC 374 ms
85,760 KB
testcase_14 AC 306 ms
82,176 KB
testcase_15 AC 365 ms
86,016 KB
testcase_16 AC 197 ms
78,336 KB
testcase_17 AC 482 ms
88,960 KB
testcase_18 WA -
testcase_19 AC 145 ms
76,672 KB
testcase_20 AC 463 ms
89,216 KB
testcase_21 AC 636 ms
97,536 KB
testcase_22 AC 171 ms
77,312 KB
testcase_23 AC 42 ms
51,840 KB
testcase_24 AC 40 ms
52,096 KB
testcase_25 AC 40 ms
51,840 KB
testcase_26 AC 41 ms
51,840 KB
testcase_27 WA -
testcase_28 AC 490 ms
90,752 KB
testcase_29 AC 169 ms
77,184 KB
testcase_30 AC 544 ms
93,312 KB
testcase_31 AC 65 ms
66,176 KB
testcase_32 AC 212 ms
78,592 KB
testcase_33 AC 304 ms
82,176 KB
testcase_34 AC 356 ms
84,352 KB
testcase_35 AC 81 ms
69,120 KB
testcase_36 AC 107 ms
93,312 KB
testcase_37 AC 263 ms
81,152 KB
testcase_38 AC 764 ms
95,872 KB
testcase_39 AC 312 ms
83,072 KB
testcase_40 AC 605 ms
92,672 KB
testcase_41 AC 455 ms
89,216 KB
testcase_42 AC 429 ms
131,484 KB
testcase_43 AC 464 ms
126,920 KB
testcase_44 AC 424 ms
127,052 KB
testcase_45 AC 413 ms
133,156 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)
else:
    print(-1)
0