結果

問題 No.10 +か×か
コンテスト
ユーザー konchanksu
提出日時 2020-04-16 19:16:12
言語 Python3
(3.14.3 + numpy 2.4.4 + scipy 1.17.1)
コンパイル:
python3 -mpy_compile _filename_
実行:
python3 _filename_
結果
WA  
実行時間 -
コード長 807 bytes
記録
記録タグの例:
初AC ショートコード 純ショートコード 純主流ショートコード 最速実行時間
コンパイル時間 452 ms
コンパイル使用メモリ 20,696 KB
実行使用メモリ 282,076 KB
最終ジャッジ日時 2026-04-18 14:48:09
合計ジャッジ時間 9,708 ms
ジャッジサーバーID
(参考情報)
judge3_0 / judge1_0
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 7 WA * 5 RE * 1
権限があれば一括ダウンロードができます

ソースコード

diff #
raw source code

n = int(input())
total = int(input())
a = list(map(int, input().split()))

dp = [['' for i in range(total + 1)] for j in range(n + 1)]

dp[2][a[0] + a[1]] = '+'
dp[2][a[0] * a[1]] = '*'

ans = []
tmp = max(a[0] * a[1], a[0] + a[1])
for i in range(2, n):
    tmp = max(tmp * a[i], tmp + a[i])
    for j in range(min(total + 1, tmp)):
        if len(dp[i][j]) != 0 and j * a[i] <= total:
            dp[i + 1][j * a[i]] = dp[i][j] + '*'
            if i + 1 == n and j * a[i] == total:
                ans.append(dp[i + 1][j * a[i]])
        if len(dp[i][j]) != 0 and j + a[i] <= total:
            dp[i + 1][j + a[i]] = dp[i][j] + '+'
            if i + 1 == n and j + a[i] == total:
                ans.append(dp[i + 1][j + a[i]])
                                    
ans.sort(reverse = True)
print(ans[0])
0