結果

問題 No.10 +か×か
ユーザー ayame_pyayame_py
提出日時 2015-10-10 16:23:40
言語 PyPy2
(7.3.15)
結果
AC  
実行時間 834 ms / 5,000 ms
コード長 390 bytes
コンパイル時間 378 ms
コンパイル使用メモリ 77,228 KB
実行使用メモリ 340,296 KB
最終ジャッジ日時 2024-12-14 15:31:42
合計ジャッジ時間 4,428 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 76 ms
75,392 KB
testcase_01 AC 75 ms
75,912 KB
testcase_02 AC 75 ms
75,520 KB
testcase_03 AC 834 ms
334,148 KB
testcase_04 AC 284 ms
127,756 KB
testcase_05 AC 76 ms
75,776 KB
testcase_06 AC 832 ms
340,296 KB
testcase_07 AC 440 ms
191,932 KB
testcase_08 AC 157 ms
91,904 KB
testcase_09 AC 192 ms
103,332 KB
testcase_10 AC 88 ms
77,980 KB
testcase_11 AC 85 ms
77,440 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