結果

問題 No.2927 Reverse Polish Equation
ユーザー 👑 AngrySadEightAngrySadEight
提出日時 2024-10-12 16:36:58
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 587 ms / 2,000 ms
コード長 822 bytes
コンパイル時間 281 ms
コンパイル使用メモリ 81,920 KB
実行使用メモリ 129,428 KB
最終ジャッジ日時 2024-10-16 00:27:21
合計ジャッジ時間 13,761 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
51,968 KB
testcase_01 AC 40 ms
57,472 KB
testcase_02 AC 42 ms
57,216 KB
testcase_03 AC 41 ms
56,704 KB
testcase_04 AC 41 ms
56,832 KB
testcase_05 AC 41 ms
57,600 KB
testcase_06 AC 43 ms
56,960 KB
testcase_07 AC 95 ms
76,032 KB
testcase_08 AC 76 ms
71,552 KB
testcase_09 AC 99 ms
75,776 KB
testcase_10 AC 69 ms
69,248 KB
testcase_11 AC 97 ms
76,288 KB
testcase_12 AC 263 ms
84,280 KB
testcase_13 AC 359 ms
92,416 KB
testcase_14 AC 293 ms
86,656 KB
testcase_15 AC 366 ms
92,288 KB
testcase_16 AC 208 ms
79,944 KB
testcase_17 AC 431 ms
97,408 KB
testcase_18 AC 494 ms
103,424 KB
testcase_19 AC 148 ms
77,788 KB
testcase_20 AC 444 ms
97,708 KB
testcase_21 AC 587 ms
111,360 KB
testcase_22 AC 169 ms
77,696 KB
testcase_23 AC 39 ms
52,200 KB
testcase_24 AC 38 ms
52,352 KB
testcase_25 AC 38 ms
51,712 KB
testcase_26 AC 42 ms
57,088 KB
testcase_27 AC 504 ms
104,384 KB
testcase_28 AC 452 ms
100,608 KB
testcase_29 AC 164 ms
78,020 KB
testcase_30 AC 499 ms
103,808 KB
testcase_31 AC 119 ms
76,544 KB
testcase_32 AC 207 ms
80,512 KB
testcase_33 AC 285 ms
86,656 KB
testcase_34 AC 329 ms
90,240 KB
testcase_35 AC 74 ms
67,200 KB
testcase_36 AC 482 ms
103,936 KB
testcase_37 AC 215 ms
83,968 KB
testcase_38 AC 555 ms
108,160 KB
testcase_39 AC 311 ms
88,064 KB
testcase_40 AC 468 ms
103,896 KB
testcase_41 AC 448 ms
97,536 KB
testcase_42 AC 413 ms
128,688 KB
testcase_43 AC 468 ms
127,172 KB
testcase_44 AC 482 ms
126,904 KB
testcase_45 AC 397 ms
129,428 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

Q, Y = map(int, input().split())
s = list(map(str, input().split()))

def solve(x):
    lst = []
    for i in range(Q):
        if s[i] in ['+', 'min', 'max']:
            val1 = lst[-1]
            val2 = lst[-2]
            lst.pop()
            lst.pop()
            if s[i] == '+':
                lst.append(val1 + val2)
            elif s[i] == 'min':
                lst.append(min(val1, val2))
            else:
                lst.append(max(val1, val2))
        else:
            if s[i] == 'X':
                lst.append(x)
            else:
                lst.append(int(s[i]))
    return lst[0]

ng = -1
ok = 10 ** 14 + 1

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

if solve(ok) != Y:
    print(-1)
else:
    print(ok)
0