結果

問題 No.10 +か×か
ユーザー TawaraTawara
提出日時 2015-12-14 23:11:13
言語 Python2
(2.7.18)
結果
AC  
実行時間 3,101 ms / 5,000 ms
コード長 303 bytes
コンパイル時間 217 ms
コンパイル使用メモリ 7,040 KB
実行使用メモリ 53,312 KB
最終ジャッジ日時 2024-12-14 15:33:40
合計ジャッジ時間 7,953 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 10 ms
6,400 KB
testcase_01 AC 9 ms
6,400 KB
testcase_02 AC 12 ms
6,400 KB
testcase_03 AC 3,056 ms
52,296 KB
testcase_04 AC 27 ms
8,832 KB
testcase_05 AC 10 ms
6,400 KB
testcase_06 AC 3,101 ms
53,312 KB
testcase_07 AC 810 ms
32,276 KB
testcase_08 AC 141 ms
19,192 KB
testcase_09 AC 87 ms
14,916 KB
testcase_10 AC 11 ms
6,400 KB
testcase_11 AC 11 ms
6,400 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