結果

問題 No.2927 Reverse Polish Equation
ユーザー hirayuu_ychirayuu_yc
提出日時 2024-09-16 13:11:55
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 660 ms / 2,000 ms
コード長 488 bytes
コンパイル時間 212 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 97,408 KB
最終ジャッジ日時 2024-10-16 00:21:07
合計ジャッジ時間 13,711 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 45 ms
53,632 KB
testcase_01 AC 46 ms
53,632 KB
testcase_02 AC 46 ms
53,376 KB
testcase_03 AC 45 ms
53,376 KB
testcase_04 AC 45 ms
53,760 KB
testcase_05 AC 45 ms
53,632 KB
testcase_06 AC 46 ms
53,632 KB
testcase_07 AC 88 ms
73,472 KB
testcase_08 AC 72 ms
67,200 KB
testcase_09 AC 96 ms
75,520 KB
testcase_10 AC 76 ms
69,376 KB
testcase_11 AC 102 ms
76,416 KB
testcase_12 AC 293 ms
81,536 KB
testcase_13 AC 406 ms
86,272 KB
testcase_14 AC 295 ms
82,816 KB
testcase_15 AC 390 ms
85,760 KB
testcase_16 AC 214 ms
79,232 KB
testcase_17 AC 484 ms
89,344 KB
testcase_18 AC 571 ms
93,056 KB
testcase_19 AC 160 ms
77,440 KB
testcase_20 AC 511 ms
89,344 KB
testcase_21 AC 660 ms
97,408 KB
testcase_22 AC 184 ms
77,184 KB
testcase_23 AC 44 ms
53,760 KB
testcase_24 AC 46 ms
53,376 KB
testcase_25 AC 45 ms
53,760 KB
testcase_26 AC 45 ms
53,504 KB
testcase_27 AC 601 ms
93,440 KB
testcase_28 AC 518 ms
91,264 KB
testcase_29 AC 174 ms
77,952 KB
testcase_30 AC 567 ms
92,928 KB
testcase_31 AC 129 ms
76,544 KB
testcase_32 AC 218 ms
78,976 KB
testcase_33 AC 309 ms
82,304 KB
testcase_34 AC 371 ms
84,480 KB
testcase_35 AC 77 ms
69,504 KB
testcase_36 AC 551 ms
93,184 KB
testcase_37 AC 264 ms
81,280 KB
testcase_38 AC 646 ms
96,000 KB
testcase_39 AC 329 ms
83,200 KB
testcase_40 AC 548 ms
92,800 KB
testcase_41 AC 479 ms
89,216 KB
testcase_42 AC 301 ms
96,768 KB
testcase_43 AC 296 ms
96,640 KB
testcase_44 AC 352 ms
96,640 KB
testcase_45 AC 281 ms
94,336 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import deque
from operator import __add__

def calc(X):
	A=deque()
	for op in S:
		if op=="X":
			A.append(X)
		elif op=="+":
			A.append(A.pop()+A.pop())
		elif op=="min":
			A.append(min(A.pop(),A.pop()))
		elif op=="max":
			A.append(max(A.pop(),A.pop()))
		else:
			A.append(int(op))
	return A[0]
	
Q,Y=map(int,input().split())
S=input().split()
ok=1<<60
ng=-1
while ok-ng>1:
	mid=(ok+ng)//2
	if calc(mid)>=Y:
		ok=mid
	else:
		ng=mid
print(ok if calc(ok)==Y else -1)
0