結果

問題 No.10 +か×か
ユーザー ayame_pyayame_py
提出日時 2015-10-10 16:22:16
言語 Python2
(2.7.18)
結果
AC  
実行時間 4,995 ms / 5,000 ms
コード長 390 bytes
コンパイル時間 65 ms
コンパイル使用メモリ 6,912 KB
実行使用メモリ 269,380 KB
最終ジャッジ日時 2024-12-14 15:32:17
合計ジャッジ時間 17,112 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 12 ms
6,144 KB
testcase_01 AC 12 ms
6,144 KB
testcase_02 AC 12 ms
6,272 KB
testcase_03 AC 4,995 ms
269,380 KB
testcase_04 AC 1,942 ms
36,464 KB
testcase_05 AC 12 ms
6,272 KB
testcase_06 AC 4,937 ms
267,712 KB
testcase_07 AC 2,878 ms
100,604 KB
testcase_08 AC 606 ms
24,664 KB
testcase_09 AC 921 ms
28,728 KB
testcase_10 AC 20 ms
6,528 KB
testcase_11 AC 13 ms
6,400 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(raw_input())
T = int(raw_input())
A = map(int, raw_input().split())
dp = [[1 for _ in range(T+1)] for _ in range(N)]
dp[0][A[0]]=''
for i in range(1, N):
	for t in range(1,T+1):
		if t-A[i]>0 and dp[i-1][t-A[i]]!=1:
			s = dp[i-1][t-A[i]]+'+'
			dp[i][t]=max(dp[i][t],s)
		if t%A[i]==0 and dp[i-1][t/A[i]]!=1:
			s = dp[i-1][t/A[i]]+'*'
			dp[i][t]=max(dp[i][t],s)
print dp[N-1][T]
0