結果

問題 No.10 +か×か
ユーザー pluto77pluto77
提出日時 2017-05-21 15:32:15
言語 Python2
(2.7.18)
結果
AC  
実行時間 3,653 ms / 5,000 ms
コード長 495 bytes
コンパイル時間 48 ms
コンパイル使用メモリ 7,040 KB
実行使用メモリ 266,368 KB
最終ジャッジ日時 2024-05-08 11:55:09
合計ジャッジ時間 12,146 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 10 ms
6,812 KB
testcase_01 AC 11 ms
6,944 KB
testcase_02 AC 11 ms
6,940 KB
testcase_03 AC 3,653 ms
266,368 KB
testcase_04 AC 1,186 ms
34,560 KB
testcase_05 AC 11 ms
6,944 KB
testcase_06 AC 3,651 ms
264,704 KB
testcase_07 AC 1,881 ms
98,688 KB
testcase_08 AC 442 ms
24,192 KB
testcase_09 AC 672 ms
27,008 KB
testcase_10 AC 17 ms
6,940 KB
testcase_11 AC 12 ms
6,944 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#yuki_10

n=int(raw_input())
t=int(raw_input())
a=map(int,raw_input().split())
dp=[['?' for i in xrange(t+1)] for j in xrange(n+1)]
dp[0][a[0]]=''
for i in xrange(n-1):
 for j in xrange(t+1):
  p=j+a[i+1]
  m=j*a[i+1]
  if dp[i][j]!='?':
   if p<=t:
    if dp[i+1][p]=='?':
     dp[i+1][p]=dp[i][j]+'+'
    else:
     dp[i+1][p]=max(dp[i+1][p],dp[i][j]+'+')
   if m<=t:
    if dp[i+1][m]=='?':
     dp[i+1][m]=dp[i][j]+'*'
    else:
     dp[i+1][m]=max(dp[i+1][m],dp[i][j]+'*')
print dp[n-1][t]
0