結果

問題 No.2927 Reverse Polish Equation
ユーザー 👑 p-adicp-adic
提出日時 2024-10-14 16:06:32
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 542 ms / 2,000 ms
コード長 281 bytes
コンパイル時間 171 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 138,752 KB
最終ジャッジ日時 2024-10-16 00:32:49
合計ジャッジ時間 11,534 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
51,968 KB
testcase_01 AC 38 ms
51,840 KB
testcase_02 AC 37 ms
51,584 KB
testcase_03 AC 36 ms
51,584 KB
testcase_04 AC 36 ms
51,968 KB
testcase_05 AC 36 ms
51,712 KB
testcase_06 AC 38 ms
51,584 KB
testcase_07 AC 71 ms
72,192 KB
testcase_08 AC 75 ms
75,904 KB
testcase_09 AC 76 ms
75,776 KB
testcase_10 AC 61 ms
63,232 KB
testcase_11 AC 84 ms
76,032 KB
testcase_12 AC 189 ms
81,664 KB
testcase_13 AC 271 ms
86,144 KB
testcase_14 AC 214 ms
82,304 KB
testcase_15 AC 228 ms
86,016 KB
testcase_16 AC 141 ms
78,464 KB
testcase_17 AC 307 ms
89,472 KB
testcase_18 AC 368 ms
92,928 KB
testcase_19 AC 109 ms
76,672 KB
testcase_20 AC 326 ms
89,472 KB
testcase_21 AC 424 ms
97,664 KB
testcase_22 AC 112 ms
76,544 KB
testcase_23 AC 39 ms
51,968 KB
testcase_24 AC 38 ms
51,584 KB
testcase_25 AC 37 ms
51,584 KB
testcase_26 AC 36 ms
51,840 KB
testcase_27 AC 411 ms
93,568 KB
testcase_28 AC 445 ms
90,880 KB
testcase_29 AC 149 ms
76,928 KB
testcase_30 AC 487 ms
93,184 KB
testcase_31 AC 117 ms
76,416 KB
testcase_32 AC 189 ms
79,104 KB
testcase_33 AC 267 ms
82,432 KB
testcase_34 AC 302 ms
84,480 KB
testcase_35 AC 63 ms
66,432 KB
testcase_36 AC 334 ms
93,440 KB
testcase_37 AC 215 ms
81,024 KB
testcase_38 AC 520 ms
96,000 KB
testcase_39 AC 268 ms
83,328 KB
testcase_40 AC 432 ms
92,928 KB
testcase_41 AC 396 ms
89,088 KB
testcase_42 AC 294 ms
118,788 KB
testcase_43 AC 525 ms
138,540 KB
testcase_44 AC 542 ms
138,752 KB
testcase_45 AC 285 ms
115,764 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

Y=int(input().split()[1])
S=input().split()
def f(x):
	A=[]
	for s in S:
		if"0">s:a=A.pop();A[-1]+=a
		elif"m">s:A+=[int(s)if"X">s else x]
		else:A[-2]=[min,max]["mi">s](A[-2:]);A.pop()
	return A[0]
l,r=-1,Y
while l<r-1:
	m=(l+r)>>1
	if f(m)<Y:l=m
	else:r=m
print([-1,r][f(r)==Y])
0