結果

問題 No.2927 Reverse Polish Equation
ユーザー prd_xxxprd_xxx
提出日時 2024-10-12 16:25:58
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,098 ms / 2,000 ms
コード長 708 bytes
コンパイル時間 210 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 192,352 KB
最終ジャッジ日時 2024-10-16 00:26:37
合計ジャッジ時間 22,755 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 43 ms
57,088 KB
testcase_01 AC 45 ms
57,216 KB
testcase_02 AC 47 ms
58,112 KB
testcase_03 AC 45 ms
57,600 KB
testcase_04 AC 47 ms
57,472 KB
testcase_05 AC 46 ms
57,728 KB
testcase_06 AC 45 ms
56,960 KB
testcase_07 AC 120 ms
76,160 KB
testcase_08 AC 123 ms
75,904 KB
testcase_09 AC 112 ms
76,100 KB
testcase_10 AC 79 ms
70,144 KB
testcase_11 AC 132 ms
76,160 KB
testcase_12 AC 442 ms
81,792 KB
testcase_13 AC 643 ms
85,888 KB
testcase_14 AC 500 ms
82,816 KB
testcase_15 AC 626 ms
85,980 KB
testcase_16 AC 301 ms
78,592 KB
testcase_17 AC 772 ms
89,216 KB
testcase_18 AC 929 ms
92,928 KB
testcase_19 AC 187 ms
76,928 KB
testcase_20 AC 782 ms
89,216 KB
testcase_21 AC 1,098 ms
97,704 KB
testcase_22 AC 239 ms
77,808 KB
testcase_23 AC 40 ms
52,096 KB
testcase_24 AC 41 ms
52,096 KB
testcase_25 AC 39 ms
51,968 KB
testcase_26 AC 45 ms
56,832 KB
testcase_27 AC 971 ms
93,660 KB
testcase_28 AC 850 ms
91,008 KB
testcase_29 AC 241 ms
77,056 KB
testcase_30 AC 949 ms
93,440 KB
testcase_31 AC 176 ms
76,928 KB
testcase_32 AC 322 ms
78,976 KB
testcase_33 AC 488 ms
82,484 KB
testcase_34 AC 584 ms
84,352 KB
testcase_35 AC 93 ms
76,160 KB
testcase_36 AC 942 ms
93,184 KB
testcase_37 AC 403 ms
81,536 KB
testcase_38 AC 1,066 ms
95,488 KB
testcase_39 AC 530 ms
83,200 KB
testcase_40 AC 984 ms
92,800 KB
testcase_41 AC 770 ms
89,196 KB
testcase_42 AC 921 ms
122,032 KB
testcase_43 AC 920 ms
192,352 KB
testcase_44 AC 937 ms
192,096 KB
testcase_45 AC 858 ms
118,892 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

def is_ok(x):
    if x < 0: return False
    stack = []
    for s in S:
        if s in ('+','min','max'):
            a = stack.pop()
            b = stack.pop()
            if s == '+':
                c = a+b
            elif s == 'min':
                c = min(a,b)
            else:
                c = max(a,b)
            stack.append(c)
        elif s == 'X':
            stack.append(x)
        else:
            stack.append(int(s))
    v = stack.pop()
    return v >= Y, v

ng = -1
ok = 10**24
while ok - ng > 1:
    mid = (ok+ng)//2
    if is_ok(mid)[0]:
        ok = mid
    else:
        ng = mid

v = is_ok(ok)[1]
print(ok if v == Y else -1)
0