結果

問題 No.2927 Reverse Polish Equation
ユーザー hiro1729hiro1729
提出日時 2024-10-12 16:20:07
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 666 ms / 2,000 ms
コード長 751 bytes
コンパイル時間 232 ms
コンパイル使用メモリ 81,920 KB
実行使用メモリ 200,872 KB
最終ジャッジ日時 2024-10-16 00:25:58
合計ジャッジ時間 13,313 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
51,584 KB
testcase_01 AC 41 ms
52,096 KB
testcase_02 AC 39 ms
52,352 KB
testcase_03 AC 38 ms
52,480 KB
testcase_04 AC 43 ms
51,712 KB
testcase_05 AC 39 ms
52,096 KB
testcase_06 AC 39 ms
52,224 KB
testcase_07 AC 82 ms
71,936 KB
testcase_08 AC 83 ms
70,400 KB
testcase_09 AC 90 ms
73,472 KB
testcase_10 AC 71 ms
68,096 KB
testcase_11 AC 97 ms
75,776 KB
testcase_12 AC 254 ms
81,256 KB
testcase_13 AC 364 ms
86,656 KB
testcase_14 AC 281 ms
82,944 KB
testcase_15 AC 347 ms
86,272 KB
testcase_16 AC 182 ms
78,720 KB
testcase_17 AC 421 ms
89,856 KB
testcase_18 AC 491 ms
93,952 KB
testcase_19 AC 139 ms
76,416 KB
testcase_20 AC 408 ms
89,856 KB
testcase_21 AC 570 ms
98,816 KB
testcase_22 AC 157 ms
76,800 KB
testcase_23 AC 42 ms
51,840 KB
testcase_24 AC 41 ms
51,712 KB
testcase_25 AC 39 ms
51,840 KB
testcase_26 AC 41 ms
52,224 KB
testcase_27 AC 528 ms
94,592 KB
testcase_28 AC 456 ms
92,032 KB
testcase_29 AC 148 ms
77,184 KB
testcase_30 AC 506 ms
94,080 KB
testcase_31 AC 121 ms
76,032 KB
testcase_32 AC 198 ms
78,848 KB
testcase_33 AC 275 ms
82,816 KB
testcase_34 AC 322 ms
85,504 KB
testcase_35 AC 76 ms
69,376 KB
testcase_36 AC 479 ms
94,336 KB
testcase_37 AC 261 ms
81,024 KB
testcase_38 AC 666 ms
96,896 KB
testcase_39 AC 293 ms
84,096 KB
testcase_40 AC 565 ms
94,080 KB
testcase_41 AC 416 ms
90,240 KB
testcase_42 AC 503 ms
200,872 KB
testcase_43 AC 471 ms
198,148 KB
testcase_44 AC 506 ms
198,380 KB
testcase_45 AC 518 ms
200,364 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

Q, Y = map(int, input().split())
s = list(input().split())
def calc(x):
	A = []
	for i in s:
		if i == 'X':
			A.append(x)
		elif i == '+':
			A.append(A.pop() + A.pop())
		elif i == 'min':
			A.append(min(A.pop(), A.pop()))
		elif i == 'max':
			A.append(max(A.pop(), A.pop()))
		else:
			A.append(int(i))
	return A[0]
if calc(0) <= calc(10 ** 18):
	le = 0
	ri = 10 ** 18
	while le + 1 < ri:
		mi = (le + ri) // 2
		if calc(mi) >= Y:
			ri = mi
		else:
			le = mi
	if calc(le) == Y:
		print(le)
	elif calc(ri) == Y:
		print(ri)
	else:
		print(-1)
else:
	le = 0
	ri = 10 ** 18
	while le + 1 < ri:
		mi = (le + ri) // 2
		if calc(mi) <= Y:
			ri = mi
		else:
			le = mi
	if calc(le) == Y:
		print(le)
	elif calc(ri) == Y:
		print(ri)
	else:
		print(-1)
0