結果

問題 No.2927 Reverse Polish Equation
ユーザー loop0919loop0919
提出日時 2024-07-22 14:00:36
言語 PyPy3
(7.3.15)
結果
RE  
実行時間 -
コード長 747 bytes
コンパイル時間 213 ms
コンパイル使用メモリ 82,624 KB
実行使用メモリ 98,304 KB
最終ジャッジ日時 2024-10-16 00:20:37
合計ジャッジ時間 6,312 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 46 ms
51,712 KB
testcase_01 AC 47 ms
51,968 KB
testcase_02 AC 39 ms
51,840 KB
testcase_03 AC 43 ms
56,192 KB
testcase_04 RE -
testcase_05 RE -
testcase_06 AC 46 ms
56,960 KB
testcase_07 AC 79 ms
70,272 KB
testcase_08 AC 78 ms
69,632 KB
testcase_09 RE -
testcase_10 RE -
testcase_11 AC 92 ms
76,032 KB
testcase_12 AC 191 ms
81,280 KB
testcase_13 RE -
testcase_14 RE -
testcase_15 AC 236 ms
85,888 KB
testcase_16 RE -
testcase_17 AC 308 ms
88,960 KB
testcase_18 RE -
testcase_19 AC 133 ms
76,308 KB
testcase_20 RE -
testcase_21 AC 413 ms
97,792 KB
testcase_22 AC 114 ms
76,672 KB
testcase_23 AC 41 ms
51,840 KB
testcase_24 AC 40 ms
51,584 KB
testcase_25 AC 40 ms
51,584 KB
testcase_26 AC 38 ms
51,584 KB
testcase_27 RE -
testcase_28 RE -
testcase_29 RE -
testcase_30 RE -
testcase_31 AC 108 ms
76,160 KB
testcase_32 RE -
testcase_33 RE -
testcase_34 RE -
testcase_35 RE -
testcase_36 AC 336 ms
93,184 KB
testcase_37 RE -
testcase_38 RE -
testcase_39 RE -
testcase_40 RE -
testcase_41 RE -
testcase_42 RE -
testcase_43 RE -
testcase_44 RE -
testcase_45 RE -
権限があれば一括ダウンロードができます

ソースコード

diff #

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

assert 0 <= Y <= 10**9

def rev_polish(x):
    A = []
    for s in S:
        if s in ('+', 'min', 'max'):
            a = A.pop()
            b = A.pop()
            
            if s == '+':
                A.append(a + b)
            if s == 'min':
                A.append(min(a, b))
            if s == 'max':
                A.append(max(a, b))
        
        else:
            if s == 'X':
                A.append(x)
            else:
                A.append(int(s))
    
    return A[0]

ok, ng = Y, -1

while ok - ng > 1:
    mid = (ok + ng) // 2
    if rev_polish(mid) >= Y:
        ok = mid
    else:
        ng = mid

if rev_polish(ok) == Y:
    print(ok)
else:
    print(-1)

0