結果

問題 No.2927 Reverse Polish Equation
ユーザー loop0919loop0919
提出日時 2024-06-12 23:12:54
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 633 ms / 2,000 ms
コード長 728 bytes
コンパイル時間 520 ms
コンパイル使用メモリ 82,784 KB
実行使用メモリ 128,908 KB
最終ジャッジ日時 2024-10-16 00:19:46
合計ジャッジ時間 15,126 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 44 ms
51,712 KB
testcase_01 AC 43 ms
56,704 KB
testcase_02 AC 43 ms
57,088 KB
testcase_03 AC 43 ms
56,448 KB
testcase_04 AC 43 ms
57,344 KB
testcase_05 AC 43 ms
56,576 KB
testcase_06 AC 43 ms
56,576 KB
testcase_07 AC 97 ms
75,904 KB
testcase_08 AC 78 ms
70,400 KB
testcase_09 AC 96 ms
75,776 KB
testcase_10 AC 72 ms
68,480 KB
testcase_11 AC 98 ms
76,288 KB
testcase_12 AC 267 ms
81,832 KB
testcase_13 AC 368 ms
86,064 KB
testcase_14 AC 293 ms
82,304 KB
testcase_15 AC 367 ms
85,888 KB
testcase_16 AC 196 ms
78,396 KB
testcase_17 AC 448 ms
88,960 KB
testcase_18 AC 526 ms
92,800 KB
testcase_19 AC 138 ms
76,404 KB
testcase_20 AC 452 ms
89,332 KB
testcase_21 AC 633 ms
97,732 KB
testcase_22 AC 157 ms
77,184 KB
testcase_23 AC 39 ms
51,584 KB
testcase_24 AC 40 ms
51,840 KB
testcase_25 AC 39 ms
51,968 KB
testcase_26 AC 43 ms
57,344 KB
testcase_27 AC 560 ms
93,312 KB
testcase_28 AC 475 ms
91,088 KB
testcase_29 AC 155 ms
76,672 KB
testcase_30 AC 533 ms
92,928 KB
testcase_31 AC 123 ms
76,416 KB
testcase_32 AC 204 ms
78,720 KB
testcase_33 AC 290 ms
82,616 KB
testcase_34 AC 343 ms
85,224 KB
testcase_35 AC 69 ms
66,432 KB
testcase_36 AC 522 ms
93,304 KB
testcase_37 AC 231 ms
80,896 KB
testcase_38 AC 608 ms
96,216 KB
testcase_39 AC 313 ms
83,200 KB
testcase_40 AC 511 ms
92,928 KB
testcase_41 AC 474 ms
88,960 KB
testcase_42 AC 431 ms
124,516 KB
testcase_43 AC 491 ms
125,948 KB
testcase_44 AC 525 ms
125,700 KB
testcase_45 AC 404 ms
128,908 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

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