結果
| 問題 | No.10 +か×か |
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2020-04-16 20:41:51 |
| 言語 | Python3 (3.14.2 + numpy 2.4.0 + scipy 1.16.3) |
| 結果 |
AC
|
| 実行時間 | 4,157 ms / 5,000 ms |
| コード長 | 1,001 bytes |
| 記録 | |
| コンパイル時間 | 206 ms |
| コンパイル使用メモリ | 12,160 KB |
| 実行使用メモリ | 278,144 KB |
| 最終ジャッジ日時 | 2025-12-06 14:55:02 |
| 合計ジャッジ時間 | 8,636 ms |
|
ジャッジサーバーID (参考情報) |
judge2 / judge4 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | AC * 13 |
ソースコード
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]] = '+'
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(1, min(tmp + 1, total) + 1):
if dp[i][j] != '':
if j * a[i] <= total:
if dp[i + 1][j * a[i]] != '':
if dp[i][j] + '*' > dp[i + 1][j * a[i]]:
dp[i + 1][j * a[i]] = dp[i][j] + '*'
else:
dp[i + 1][j * a[i]] = dp[i][j] + '*'
if j + a[i] <= total:
if dp[i + 1][j + a[i]] != '':
if dp[i][j] + '+' > dp[i + 1][j + a[i]]:
dp[i + 1][j + a[i]] = dp[i][j] + '+'
else:
dp[i + 1][j + a[i]] = dp[i][j] + '+'
print(dp[n][total])