結果

問題 No.10 +か×か
ユーザー konchanksukonchanksu
提出日時 2020-04-16 19:40:00
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 865 bytes
コンパイル時間 121 ms
コンパイル使用メモリ 12,800 KB
実行使用メモリ 278,528 KB
最終ジャッジ日時 2024-04-10 05:45:40
合計ジャッジ時間 11,773 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 29 ms
10,880 KB
testcase_01 AC 30 ms
10,880 KB
testcase_02 AC 30 ms
10,880 KB
testcase_03 WA -
testcase_04 WA -
testcase_05 AC 29 ms
10,880 KB
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 AC 623 ms
31,488 KB
testcase_10 AC 33 ms
11,008 KB
testcase_11 AC 29 ms
10,880 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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)]

if total >= a[0] * a[1]:
    dp[2][a[0] * a[1]] = '*'
if total >= 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