結果

問題 No.2927 Reverse Polish Equation
ユーザー kusirakusirakusirakusira
提出日時 2024-08-25 23:15:17
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 673 ms / 2,000 ms
コード長 734 bytes
コンパイル時間 203 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 134,960 KB
最終ジャッジ日時 2024-10-16 00:20:52
合計ジャッジ時間 13,941 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
52,352 KB
testcase_01 AC 39 ms
52,224 KB
testcase_02 AC 40 ms
51,840 KB
testcase_03 AC 41 ms
52,352 KB
testcase_04 AC 40 ms
52,352 KB
testcase_05 AC 40 ms
52,480 KB
testcase_06 AC 40 ms
51,968 KB
testcase_07 AC 79 ms
72,128 KB
testcase_08 AC 69 ms
68,864 KB
testcase_09 AC 83 ms
73,600 KB
testcase_10 AC 68 ms
67,072 KB
testcase_11 AC 89 ms
75,904 KB
testcase_12 AC 282 ms
84,300 KB
testcase_13 AC 391 ms
92,672 KB
testcase_14 AC 309 ms
86,656 KB
testcase_15 AC 365 ms
92,288 KB
testcase_16 AC 182 ms
79,744 KB
testcase_17 AC 466 ms
97,152 KB
testcase_18 AC 575 ms
103,552 KB
testcase_19 AC 131 ms
76,672 KB
testcase_20 AC 466 ms
97,536 KB
testcase_21 AC 673 ms
111,488 KB
testcase_22 AC 155 ms
77,312 KB
testcase_23 AC 42 ms
51,840 KB
testcase_24 AC 40 ms
51,968 KB
testcase_25 AC 40 ms
51,712 KB
testcase_26 AC 39 ms
52,224 KB
testcase_27 AC 602 ms
103,936 KB
testcase_28 AC 501 ms
100,224 KB
testcase_29 AC 152 ms
77,440 KB
testcase_30 AC 543 ms
103,680 KB
testcase_31 AC 123 ms
76,416 KB
testcase_32 AC 202 ms
80,128 KB
testcase_33 AC 289 ms
86,784 KB
testcase_34 AC 353 ms
90,112 KB
testcase_35 AC 73 ms
69,248 KB
testcase_36 AC 568 ms
103,808 KB
testcase_37 AC 279 ms
83,584 KB
testcase_38 AC 659 ms
108,032 KB
testcase_39 AC 320 ms
88,064 KB
testcase_40 AC 597 ms
103,424 KB
testcase_41 AC 507 ms
97,536 KB
testcase_42 AC 468 ms
128,664 KB
testcase_43 AC 438 ms
126,292 KB
testcase_44 AC 452 ms
126,320 KB
testcase_45 AC 437 ms
134,960 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

q,y = map(int,input().split())
S = list(map(str,input().split()))

def f(x):
    d = []
    
    for i in range(q):
        if(S[i] == "+"):
            a = d.pop()
            b = d.pop()
            d.append(a+b)
        elif(S[i] == "min"):
            a = d.pop()
            b = d.pop()
            d.append(min(a,b))
        elif(S[i] == "max"):
            a = d.pop()
            b = d.pop()
            d.append(max(a,b))
        elif(S[i] == "X"):
            d.append(x)
        else:
            d.append(int(S[i]))
    
    return d[0]
    
ok = -1
ng = 8*10**18

while abs(ok-ng) > 1:
    mid = (ok+ng)//2
    if(f(mid) < y):
        ok = mid
    else:
        ng = mid

if(f(ng) == y):
    print(ng)
else:
    print(-1)
0