結果

問題 No.2927 Reverse Polish Equation
ユーザー kusirakusirakusirakusira
提出日時 2024-06-14 18:31:19
言語 PyPy3
(7.3.15)
結果
WA  
(最新)
AC  
(最初)
実行時間 -
コード長 732 bytes
コンパイル時間 236 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 127,564 KB
最終ジャッジ日時 2024-10-16 00:20:08
合計ジャッジ時間 9,326 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,480 KB
testcase_01 AC 38 ms
52,096 KB
testcase_02 AC 40 ms
51,712 KB
testcase_03 AC 40 ms
51,840 KB
testcase_04 AC 41 ms
52,480 KB
testcase_05 AC 39 ms
51,840 KB
testcase_06 AC 39 ms
52,096 KB
testcase_07 AC 74 ms
70,784 KB
testcase_08 AC 65 ms
68,224 KB
testcase_09 AC 78 ms
71,808 KB
testcase_10 AC 53 ms
62,464 KB
testcase_11 AC 84 ms
76,032 KB
testcase_12 AC 185 ms
83,840 KB
testcase_13 AC 243 ms
92,288 KB
testcase_14 AC 202 ms
86,656 KB
testcase_15 AC 231 ms
92,312 KB
testcase_16 AC 143 ms
79,616 KB
testcase_17 AC 281 ms
97,504 KB
testcase_18 AC 321 ms
103,588 KB
testcase_19 AC 109 ms
76,544 KB
testcase_20 AC 278 ms
97,280 KB
testcase_21 AC 388 ms
111,616 KB
testcase_22 AC 123 ms
77,228 KB
testcase_23 AC 41 ms
51,968 KB
testcase_24 AC 39 ms
51,968 KB
testcase_25 AC 39 ms
51,968 KB
testcase_26 AC 39 ms
52,284 KB
testcase_27 AC 353 ms
104,064 KB
testcase_28 WA -
testcase_29 WA -
testcase_30 WA -
testcase_31 AC 98 ms
76,396 KB
testcase_32 WA -
testcase_33 WA -
testcase_34 WA -
testcase_35 WA -
testcase_36 AC 312 ms
103,956 KB
testcase_37 AC 158 ms
83,584 KB
testcase_38 AC 361 ms
108,336 KB
testcase_39 AC 192 ms
88,064 KB
testcase_40 AC 303 ms
103,552 KB
testcase_41 AC 276 ms
97,676 KB
testcase_42 AC 269 ms
122,948 KB
testcase_43 WA -
testcase_44 WA -
testcase_45 WA -
権限があれば一括ダウンロードができます

ソースコード

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 = 10**10

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