結果

問題 No.2927 Reverse Polish Equation
ユーザー hirayuu_ychirayuu_yc
提出日時 2024-09-16 13:08:49
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 432 bytes
コンパイル時間 194 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 135,552 KB
最終ジャッジ日時 2024-10-16 00:20:54
合計ジャッジ時間 7,758 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 46 ms
59,648 KB
testcase_01 AC 56 ms
55,936 KB
testcase_02 AC 49 ms
57,728 KB
testcase_03 AC 51 ms
55,424 KB
testcase_04 AC 53 ms
57,600 KB
testcase_05 AC 51 ms
56,320 KB
testcase_06 AC 51 ms
56,704 KB
testcase_07 AC 537 ms
84,460 KB
testcase_08 AC 943 ms
92,416 KB
testcase_09 AC 655 ms
86,656 KB
testcase_10 AC 139 ms
77,440 KB
testcase_11 AC 1,026 ms
93,672 KB
testcase_12 TLE -
testcase_13 -- -
testcase_14 -- -
testcase_15 -- -
testcase_16 -- -
testcase_17 -- -
testcase_18 -- -
testcase_19 -- -
testcase_20 -- -
testcase_21 -- -
testcase_22 -- -
testcase_23 -- -
testcase_24 -- -
testcase_25 -- -
testcase_26 -- -
testcase_27 -- -
testcase_28 -- -
testcase_29 -- -
testcase_30 -- -
testcase_31 -- -
testcase_32 -- -
testcase_33 -- -
testcase_34 -- -
testcase_35 -- -
testcase_36 -- -
testcase_37 -- -
testcase_38 -- -
testcase_39 -- -
testcase_40 -- -
testcase_41 -- -
testcase_42 -- -
testcase_43 -- -
testcase_44 -- -
testcase_45 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import deque
from operator import __add__

def calc(X):
	A=deque()
	for op in S:
		A.append(op)
		if op[0] in "_m":
			A.append(str(eval(A.pop()+"("+A.pop()+","+A.pop()+")")))
	return int(A[0])
	
Q,Y=map(int,input().split())
S=input().split()
for i in range(Q):
	if S[i]=="+":
		S[i]="__add__"
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