結果

問題 No.2927 Reverse Polish Equation
ユーザー loop0919loop0919
提出日時 2024-07-18 00:15:02
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 637 ms / 2,000 ms
コード長 728 bytes
コンパイル時間 411 ms
コンパイル使用メモリ 82,460 KB
実行使用メモリ 128,976 KB
最終ジャッジ日時 2024-10-16 00:20:22
合計ジャッジ時間 14,542 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
52,096 KB
testcase_01 AC 44 ms
56,448 KB
testcase_02 AC 43 ms
56,960 KB
testcase_03 AC 43 ms
57,216 KB
testcase_04 AC 43 ms
57,344 KB
testcase_05 AC 44 ms
57,344 KB
testcase_06 AC 44 ms
57,344 KB
testcase_07 AC 98 ms
76,332 KB
testcase_08 AC 80 ms
70,400 KB
testcase_09 AC 96 ms
76,160 KB
testcase_10 AC 68 ms
68,352 KB
testcase_11 AC 93 ms
76,288 KB
testcase_12 AC 264 ms
81,664 KB
testcase_13 AC 364 ms
85,760 KB
testcase_14 AC 289 ms
82,176 KB
testcase_15 AC 367 ms
85,504 KB
testcase_16 AC 189 ms
78,568 KB
testcase_17 AC 453 ms
89,240 KB
testcase_18 AC 526 ms
93,112 KB
testcase_19 AC 132 ms
76,268 KB
testcase_20 AC 460 ms
89,088 KB
testcase_21 AC 637 ms
97,920 KB
testcase_22 AC 158 ms
77,184 KB
testcase_23 AC 40 ms
51,840 KB
testcase_24 AC 40 ms
52,096 KB
testcase_25 AC 41 ms
51,712 KB
testcase_26 AC 48 ms
56,704 KB
testcase_27 AC 585 ms
93,312 KB
testcase_28 AC 498 ms
90,880 KB
testcase_29 AC 153 ms
76,672 KB
testcase_30 AC 531 ms
93,440 KB
testcase_31 AC 120 ms
76,160 KB
testcase_32 AC 200 ms
78,848 KB
testcase_33 AC 287 ms
82,608 KB
testcase_34 AC 342 ms
84,480 KB
testcase_35 AC 63 ms
66,560 KB
testcase_36 AC 518 ms
93,056 KB
testcase_37 AC 229 ms
81,300 KB
testcase_38 AC 604 ms
95,872 KB
testcase_39 AC 310 ms
83,704 KB
testcase_40 AC 503 ms
93,276 KB
testcase_41 AC 467 ms
88,960 KB
testcase_42 AC 428 ms
124,916 KB
testcase_43 AC 487 ms
126,016 KB
testcase_44 AC 590 ms
126,080 KB
testcase_45 AC 401 ms
128,976 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 = 10**14, -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