結果

問題 No.2927 Reverse Polish Equation
ユーザー こめだわらこめだわら
提出日時 2024-10-12 15:16:33
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 510 ms / 2,000 ms
コード長 648 bytes
コンパイル時間 290 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 197,664 KB
最終ジャッジ日時 2024-10-16 00:22:36
合計ジャッジ時間 11,094 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,352 KB
testcase_01 AC 39 ms
51,712 KB
testcase_02 AC 40 ms
51,840 KB
testcase_03 AC 43 ms
52,096 KB
testcase_04 AC 38 ms
52,224 KB
testcase_05 AC 38 ms
52,480 KB
testcase_06 AC 39 ms
52,096 KB
testcase_07 AC 68 ms
67,328 KB
testcase_08 AC 73 ms
68,864 KB
testcase_09 AC 76 ms
68,480 KB
testcase_10 AC 58 ms
63,488 KB
testcase_11 AC 98 ms
75,776 KB
testcase_12 AC 232 ms
81,536 KB
testcase_13 AC 312 ms
86,080 KB
testcase_14 AC 245 ms
82,364 KB
testcase_15 AC 304 ms
85,376 KB
testcase_16 AC 165 ms
78,384 KB
testcase_17 AC 373 ms
88,832 KB
testcase_18 AC 441 ms
93,312 KB
testcase_19 AC 127 ms
76,408 KB
testcase_20 AC 365 ms
88,832 KB
testcase_21 AC 510 ms
97,804 KB
testcase_22 AC 147 ms
76,672 KB
testcase_23 AC 41 ms
52,224 KB
testcase_24 AC 39 ms
51,968 KB
testcase_25 AC 38 ms
52,096 KB
testcase_26 AC 39 ms
51,840 KB
testcase_27 AC 461 ms
93,824 KB
testcase_28 AC 403 ms
90,752 KB
testcase_29 AC 144 ms
76,672 KB
testcase_30 AC 448 ms
92,928 KB
testcase_31 AC 117 ms
76,160 KB
testcase_32 AC 192 ms
78,592 KB
testcase_33 AC 252 ms
82,048 KB
testcase_34 AC 281 ms
84,660 KB
testcase_35 AC 63 ms
64,000 KB
testcase_36 AC 413 ms
93,184 KB
testcase_37 AC 71 ms
71,552 KB
testcase_38 AC 98 ms
95,616 KB
testcase_39 AC 262 ms
83,656 KB
testcase_40 AC 86 ms
85,248 KB
testcase_41 AC 375 ms
89,396 KB
testcase_42 AC 472 ms
197,664 KB
testcase_43 AC 435 ms
197,016 KB
testcase_44 AC 444 ms
197,256 KB
testcase_45 AC 468 ms
194,884 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

def solve(x):
    A=[]
    for i in S:
        if i=='+':
            A.append(A.pop()+A.pop())
        elif i=='min':
            A.append(min(A.pop(),A.pop()))
        elif i=='max':
            A.append(max(A.pop(),A.pop()))
        elif i=='X':
            A.append(x)
        else:
            A.append(int(i))
    return A[0]

if solve(10**15)<Y:
    print(-1)
    exit()

if solve(0)>Y:
    print(-1)
    exit()

d=[-1,10**15]
while d[1]-d[0]>1:
    md=sum(d)//2
    r=solve(md)
    if r>=Y:
        d[1]=md
    else:
        d[0]=md
    
if solve(d[1])==Y:
    print(d[1])
else:
    print(-1)
0