結果

問題 No.2927 Reverse Polish Equation
ユーザー 👑 p-adicp-adic
提出日時 2024-10-14 16:03:06
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 281 bytes
コンパイル時間 471 ms
コンパイル使用メモリ 82,104 KB
実行使用メモリ 138,668 KB
最終ジャッジ日時 2024-10-16 00:32:35
合計ジャッジ時間 12,650 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
51,456 KB
testcase_01 AC 41 ms
52,352 KB
testcase_02 WA -
testcase_03 AC 40 ms
52,096 KB
testcase_04 WA -
testcase_05 WA -
testcase_06 AC 41 ms
51,840 KB
testcase_07 AC 80 ms
72,960 KB
testcase_08 WA -
testcase_09 AC 87 ms
75,648 KB
testcase_10 WA -
testcase_11 WA -
testcase_12 AC 197 ms
81,920 KB
testcase_13 AC 306 ms
85,888 KB
testcase_14 AC 245 ms
82,304 KB
testcase_15 AC 268 ms
86,144 KB
testcase_16 AC 165 ms
78,336 KB
testcase_17 AC 355 ms
89,344 KB
testcase_18 WA -
testcase_19 AC 122 ms
76,712 KB
testcase_20 AC 373 ms
89,728 KB
testcase_21 AC 473 ms
98,036 KB
testcase_22 AC 119 ms
76,672 KB
testcase_23 WA -
testcase_24 AC 41 ms
52,096 KB
testcase_25 AC 41 ms
52,096 KB
testcase_26 WA -
testcase_27 AC 455 ms
93,824 KB
testcase_28 AC 511 ms
90,880 KB
testcase_29 AC 150 ms
77,268 KB
testcase_30 AC 541 ms
93,056 KB
testcase_31 WA -
testcase_32 AC 198 ms
78,592 KB
testcase_33 AC 288 ms
82,500 KB
testcase_34 AC 346 ms
84,864 KB
testcase_35 AC 68 ms
66,560 KB
testcase_36 WA -
testcase_37 AC 241 ms
80,640 KB
testcase_38 AC 614 ms
96,256 KB
testcase_39 AC 306 ms
83,584 KB
testcase_40 AC 507 ms
93,164 KB
testcase_41 AC 444 ms
89,540 KB
testcase_42 AC 313 ms
118,780 KB
testcase_43 AC 648 ms
138,668 KB
testcase_44 AC 642 ms
138,540 KB
testcase_45 AC 308 ms
115,376 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=0,Y+1
while l+1<r:
	m=(l+r)>>1
	if f(m)>Y:r=m
	else:l=m
print([l,-1][f(l)<Y])
0