結果

問題 No.2927 Reverse Polish Equation
ユーザー hato336hato336
提出日時 2024-10-12 16:16:09
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 830 ms / 2,000 ms
コード長 1,179 bytes
コンパイル時間 296 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 119,208 KB
最終ジャッジ日時 2024-10-16 00:25:32
合計ジャッジ時間 15,810 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
51,712 KB
testcase_01 AC 43 ms
52,352 KB
testcase_02 AC 44 ms
51,840 KB
testcase_03 AC 42 ms
51,968 KB
testcase_04 AC 42 ms
51,840 KB
testcase_05 AC 42 ms
51,712 KB
testcase_06 AC 42 ms
52,096 KB
testcase_07 AC 90 ms
74,368 KB
testcase_08 AC 81 ms
72,192 KB
testcase_09 AC 88 ms
73,856 KB
testcase_10 AC 81 ms
70,784 KB
testcase_11 AC 101 ms
75,776 KB
testcase_12 AC 300 ms
81,348 KB
testcase_13 AC 428 ms
86,656 KB
testcase_14 AC 339 ms
83,072 KB
testcase_15 AC 424 ms
86,528 KB
testcase_16 AC 215 ms
78,976 KB
testcase_17 AC 517 ms
89,856 KB
testcase_18 AC 610 ms
93,952 KB
testcase_19 AC 152 ms
76,304 KB
testcase_20 AC 506 ms
89,728 KB
testcase_21 AC 730 ms
98,944 KB
testcase_22 AC 177 ms
76,928 KB
testcase_23 AC 40 ms
51,840 KB
testcase_24 AC 41 ms
52,096 KB
testcase_25 AC 40 ms
51,712 KB
testcase_26 AC 40 ms
52,096 KB
testcase_27 AC 647 ms
94,464 KB
testcase_28 AC 565 ms
91,776 KB
testcase_29 AC 177 ms
77,184 KB
testcase_30 AC 623 ms
94,848 KB
testcase_31 AC 139 ms
76,800 KB
testcase_32 AC 230 ms
79,616 KB
testcase_33 AC 335 ms
82,944 KB
testcase_34 AC 394 ms
85,504 KB
testcase_35 AC 82 ms
70,656 KB
testcase_36 AC 618 ms
94,464 KB
testcase_37 AC 342 ms
80,896 KB
testcase_38 AC 830 ms
97,152 KB
testcase_39 AC 363 ms
84,096 KB
testcase_40 AC 712 ms
93,824 KB
testcase_41 AC 542 ms
90,112 KB
testcase_42 AC 510 ms
119,208 KB
testcase_43 AC 500 ms
117,616 KB
testcase_44 AC 482 ms
117,504 KB
testcase_45 AC 520 ms
117,352 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

q,t = map(int,input().split())
s = list(input().split())
l,r = 0,10**18
for i in range(70):
    mid = (l+r)//2
    st = []
    for j in s:
        if j == '+':
            x = st.pop()
            y = st.pop()
            st.append(x+y)
        elif j == 'max':
            x = st.pop()
            y = st.pop()
            st.append(max(x,y))
        elif j == 'min':
            x = st.pop()
            y = st.pop()
            st.append(min(x,y))
        elif j == 'X':
            st.append(mid)
        else:
            st.append(int(j))
    if st[0] < t:
        l = mid
    else:
        r = mid
    #print(l,r,st[0])
    if i != 69:
        continue
    mid = r
    st = []
    for j in s:
        if j == '+':
            x = st.pop()
            y = st.pop()
            st.append(x+y)
        elif j == 'max':
            x = st.pop()
            y = st.pop()
            st.append(max(x,y))
        elif j == 'min':
            x = st.pop()
            y = st.pop()
            st.append(min(x,y))
        elif j == 'X':
            st.append(mid)
        else:
            st.append(int(j))
    if st[0] == t:
        print(r)
    else:
        print(-1)

        
0