結果

問題 No.2927 Reverse Polish Equation
ユーザー 👑 p-adicp-adic
提出日時 2024-10-14 15:54:29
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 280 bytes
コンパイル時間 323 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 138,796 KB
最終ジャッジ日時 2024-10-16 00:32:36
合計ジャッジ時間 12,594 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
51,712 KB
testcase_01 AC 43 ms
51,712 KB
testcase_02 AC 47 ms
51,712 KB
testcase_03 AC 41 ms
52,096 KB
testcase_04 AC 46 ms
51,712 KB
testcase_05 AC 41 ms
51,968 KB
testcase_06 AC 42 ms
51,840 KB
testcase_07 AC 108 ms
72,320 KB
testcase_08 AC 85 ms
75,520 KB
testcase_09 AC 88 ms
75,904 KB
testcase_10 AC 61 ms
63,104 KB
testcase_11 AC 90 ms
75,904 KB
testcase_12 AC 204 ms
81,408 KB
testcase_13 AC 304 ms
85,888 KB
testcase_14 AC 246 ms
82,304 KB
testcase_15 AC 266 ms
85,632 KB
testcase_16 AC 161 ms
78,464 KB
testcase_17 AC 354 ms
89,344 KB
testcase_18 AC 419 ms
93,312 KB
testcase_19 AC 120 ms
76,672 KB
testcase_20 AC 365 ms
89,472 KB
testcase_21 AC 469 ms
97,920 KB
testcase_22 AC 121 ms
76,672 KB
testcase_23 AC 40 ms
51,584 KB
testcase_24 AC 40 ms
51,712 KB
testcase_25 AC 40 ms
52,096 KB
testcase_26 AC 40 ms
52,480 KB
testcase_27 AC 450 ms
93,696 KB
testcase_28 AC 502 ms
91,008 KB
testcase_29 AC 154 ms
76,672 KB
testcase_30 AC 541 ms
93,184 KB
testcase_31 AC 109 ms
76,288 KB
testcase_32 AC 201 ms
78,848 KB
testcase_33 AC 288 ms
82,176 KB
testcase_34 AC 334 ms
84,608 KB
testcase_35 AC 65 ms
66,304 KB
testcase_36 AC 379 ms
93,568 KB
testcase_37 WA -
testcase_38 WA -
testcase_39 AC 307 ms
83,328 KB
testcase_40 WA -
testcase_41 AC 460 ms
89,216 KB
testcase_42 AC 308 ms
119,036 KB
testcase_43 AC 658 ms
138,532 KB
testcase_44 AC 630 ms
138,796 KB
testcase_45 AC 305 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([r,-1][f(r)>Y])
0