結果

問題 No.2927 Reverse Polish Equation
ユーザー loop0919loop0919
提出日時 2024-07-27 11:47:25
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 638 ms / 2,000 ms
コード長 843 bytes
コンパイル時間 165 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 129,104 KB
最終ジャッジ日時 2024-10-16 00:20:45
合計ジャッジ時間 13,711 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
52,224 KB
testcase_01 AC 45 ms
56,576 KB
testcase_02 AC 46 ms
56,704 KB
testcase_03 AC 44 ms
56,448 KB
testcase_04 AC 46 ms
57,216 KB
testcase_05 AC 44 ms
56,704 KB
testcase_06 AC 44 ms
56,576 KB
testcase_07 AC 99 ms
75,776 KB
testcase_08 AC 79 ms
70,784 KB
testcase_09 AC 98 ms
75,904 KB
testcase_10 AC 73 ms
68,736 KB
testcase_11 AC 99 ms
75,776 KB
testcase_12 AC 265 ms
81,408 KB
testcase_13 AC 372 ms
85,632 KB
testcase_14 AC 295 ms
82,304 KB
testcase_15 AC 371 ms
85,760 KB
testcase_16 AC 195 ms
78,592 KB
testcase_17 AC 456 ms
89,088 KB
testcase_18 AC 523 ms
92,672 KB
testcase_19 AC 140 ms
76,544 KB
testcase_20 AC 458 ms
89,472 KB
testcase_21 AC 638 ms
97,536 KB
testcase_22 AC 161 ms
76,800 KB
testcase_23 AC 41 ms
52,224 KB
testcase_24 AC 41 ms
52,096 KB
testcase_25 AC 40 ms
51,840 KB
testcase_26 AC 44 ms
56,448 KB
testcase_27 AC 569 ms
93,312 KB
testcase_28 AC 479 ms
90,624 KB
testcase_29 AC 158 ms
77,056 KB
testcase_30 AC 530 ms
93,056 KB
testcase_31 AC 125 ms
76,288 KB
testcase_32 AC 206 ms
78,720 KB
testcase_33 AC 297 ms
82,432 KB
testcase_34 AC 341 ms
84,352 KB
testcase_35 AC 71 ms
66,816 KB
testcase_36 AC 524 ms
92,928 KB
testcase_37 AC 235 ms
80,768 KB
testcase_38 AC 610 ms
95,488 KB
testcase_39 AC 315 ms
83,072 KB
testcase_40 AC 511 ms
92,800 KB
testcase_41 AC 464 ms
89,216 KB
testcase_42 AC 443 ms
124,404 KB
testcase_43 AC 526 ms
125,720 KB
testcase_44 AC 524 ms
125,708 KB
testcase_45 AC 406 ms
129,104 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

assert 1 <= Q <= 2 * 10**5
assert 0 <= Y <= 10**14
assert len(S) == Q

def rev_poland(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:
                assert 0 <= int(s) <= 10**9
                A.append(int(s))
    
    return A[0]

ok, ng = 10**14, -1

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

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

0