結果

問題 No.10 +か×か
ユーザー TawaraTawara
提出日時 2015-12-14 23:11:31
言語 PyPy2
(7.3.15)
結果
AC  
実行時間 1,107 ms / 5,000 ms
コード長 303 bytes
コンパイル時間 269 ms
コンパイル使用メモリ 77,184 KB
実行使用メモリ 283,488 KB
最終ジャッジ日時 2024-12-14 15:33:31
合計ジャッジ時間 4,264 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 82 ms
75,264 KB
testcase_01 AC 81 ms
75,776 KB
testcase_02 AC 85 ms
75,648 KB
testcase_03 AC 1,107 ms
281,864 KB
testcase_04 AC 96 ms
77,952 KB
testcase_05 AC 79 ms
75,648 KB
testcase_06 AC 1,086 ms
283,488 KB
testcase_07 AC 339 ms
170,688 KB
testcase_08 AC 132 ms
90,752 KB
testcase_09 AC 111 ms
84,736 KB
testcase_10 AC 81 ms
75,776 KB
testcase_11 AC 84 ms
75,392 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = input()
T = input()
A = map(int,raw_input().split())
dp = {A[0]:""}
for i in xrange(1,N):
	tmp_dp = {}
	for k,v in dp.iteritems():
		for nk,nv in [(k+A[i],v+"+"),(k*A[i],v+"*")]:
			if nk <= T and (nk not in tmp_dp or tmp_dp[nk] < nv):
				tmp_dp[nk] = nv
	dp = tmp_dp
print dp[T] if T in dp else -1
0