結果

問題 No.2927 Reverse Polish Equation
ユーザー loop0919loop0919
提出日時 2024-07-18 00:33:45
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 523 ms / 2,000 ms
コード長 723 bytes
コンパイル時間 242 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 128,852 KB
最終ジャッジ日時 2024-10-16 00:20:30
合計ジャッジ時間 12,503 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
51,584 KB
testcase_01 AC 40 ms
51,968 KB
testcase_02 AC 40 ms
51,840 KB
testcase_03 AC 42 ms
56,192 KB
testcase_04 AC 43 ms
56,576 KB
testcase_05 AC 44 ms
56,704 KB
testcase_06 AC 43 ms
56,832 KB
testcase_07 AC 78 ms
70,144 KB
testcase_08 AC 80 ms
69,888 KB
testcase_09 AC 83 ms
71,552 KB
testcase_10 AC 59 ms
63,360 KB
testcase_11 AC 96 ms
76,032 KB
testcase_12 AC 197 ms
81,152 KB
testcase_13 AC 286 ms
86,144 KB
testcase_14 AC 221 ms
82,304 KB
testcase_15 AC 241 ms
85,632 KB
testcase_16 AC 163 ms
78,336 KB
testcase_17 AC 336 ms
88,960 KB
testcase_18 AC 405 ms
92,800 KB
testcase_19 AC 125 ms
76,312 KB
testcase_20 AC 337 ms
88,832 KB
testcase_21 AC 430 ms
97,536 KB
testcase_22 AC 116 ms
76,544 KB
testcase_23 AC 39 ms
51,584 KB
testcase_24 AC 38 ms
51,840 KB
testcase_25 AC 39 ms
51,840 KB
testcase_26 AC 37 ms
51,456 KB
testcase_27 AC 391 ms
93,312 KB
testcase_28 AC 440 ms
90,880 KB
testcase_29 AC 151 ms
77,056 KB
testcase_30 AC 465 ms
92,800 KB
testcase_31 AC 107 ms
76,160 KB
testcase_32 AC 186 ms
78,720 KB
testcase_33 AC 261 ms
82,304 KB
testcase_34 AC 302 ms
85,120 KB
testcase_35 AC 67 ms
66,560 KB
testcase_36 AC 336 ms
93,440 KB
testcase_37 AC 213 ms
80,896 KB
testcase_38 AC 523 ms
95,616 KB
testcase_39 AC 281 ms
83,200 KB
testcase_40 AC 462 ms
92,800 KB
testcase_41 AC 471 ms
89,216 KB
testcase_42 AC 406 ms
124,024 KB
testcase_43 AC 460 ms
123,892 KB
testcase_44 AC 487 ms
123,652 KB
testcase_45 AC 376 ms
128,852 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

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