結果

問題 No.2927 Reverse Polish Equation
ユーザー hirayuu_ychirayuu_yc
提出日時 2024-09-16 13:06:54
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 443 bytes
コンパイル時間 271 ms
コンパイル使用メモリ 81,920 KB
実行使用メモリ 129,152 KB
最終ジャッジ日時 2024-10-16 00:20:53
合計ジャッジ時間 8,398 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 50 ms
59,776 KB
testcase_01 AC 54 ms
55,808 KB
testcase_02 AC 53 ms
57,600 KB
testcase_03 AC 50 ms
56,064 KB
testcase_04 AC 53 ms
57,344 KB
testcase_05 AC 53 ms
56,704 KB
testcase_06 AC 53 ms
56,576 KB
testcase_07 AC 621 ms
84,608 KB
testcase_08 AC 1,121 ms
92,544 KB
testcase_09 AC 770 ms
86,656 KB
testcase_10 AC 157 ms
77,696 KB
testcase_11 AC 1,201 ms
93,824 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("{0}({1},{2})".format(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