結果

問題 No.2927 Reverse Polish Equation
ユーザー loop0919loop0919
提出日時 2024-07-17 00:19:13
言語 PyPy3
(7.3.15)
結果
RE  
(最新)
AC  
(最初)
実行時間 -
コード長 799 bytes
コンパイル時間 192 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 128,984 KB
最終ジャッジ日時 2024-10-16 00:20:31
合計ジャッジ時間 13,134 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
51,840 KB
testcase_01 AC 44 ms
56,448 KB
testcase_02 AC 43 ms
56,960 KB
testcase_03 AC 43 ms
56,576 KB
testcase_04 AC 46 ms
56,832 KB
testcase_05 AC 42 ms
56,960 KB
testcase_06 AC 41 ms
56,832 KB
testcase_07 AC 91 ms
76,032 KB
testcase_08 AC 76 ms
70,272 KB
testcase_09 AC 93 ms
75,904 KB
testcase_10 AC 68 ms
68,096 KB
testcase_11 AC 94 ms
76,160 KB
testcase_12 AC 253 ms
81,408 KB
testcase_13 AC 359 ms
85,760 KB
testcase_14 AC 278 ms
82,176 KB
testcase_15 AC 354 ms
85,632 KB
testcase_16 AC 191 ms
78,464 KB
testcase_17 AC 419 ms
88,960 KB
testcase_18 AC 502 ms
92,800 KB
testcase_19 AC 130 ms
76,648 KB
testcase_20 AC 424 ms
89,088 KB
testcase_21 AC 607 ms
97,536 KB
testcase_22 AC 153 ms
77,056 KB
testcase_23 AC 39 ms
51,840 KB
testcase_24 AC 38 ms
52,096 KB
testcase_25 RE -
testcase_26 RE -
testcase_27 AC 526 ms
93,440 KB
testcase_28 AC 450 ms
90,624 KB
testcase_29 AC 147 ms
76,800 KB
testcase_30 AC 506 ms
93,184 KB
testcase_31 AC 119 ms
76,160 KB
testcase_32 AC 195 ms
78,464 KB
testcase_33 AC 280 ms
82,304 KB
testcase_34 AC 323 ms
84,480 KB
testcase_35 AC 67 ms
67,328 KB
testcase_36 AC 508 ms
92,928 KB
testcase_37 AC 219 ms
80,768 KB
testcase_38 AC 564 ms
95,616 KB
testcase_39 AC 297 ms
83,200 KB
testcase_40 AC 495 ms
92,928 KB
testcase_41 AC 449 ms
89,088 KB
testcase_42 AC 411 ms
124,636 KB
testcase_43 AC 465 ms
125,832 KB
testcase_44 AC 519 ms
125,712 KB
testcase_45 AC 393 ms
128,984 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

assert 1 <= Q <= 2 * 10**5
assert 1 <= 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:
                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