結果

問題 No.10 +か×か
ユーザー KudeKude
提出日時 2020-09-03 09:02:00
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 588 ms / 5,000 ms
コード長 565 bytes
コンパイル時間 210 ms
コンパイル使用メモリ 82,120 KB
実行使用メモリ 308,556 KB
最終ジャッジ日時 2024-12-14 15:46:26
合計ジャッジ時間 2,820 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
51,888 KB
testcase_01 AC 39 ms
52,352 KB
testcase_02 AC 40 ms
52,096 KB
testcase_03 AC 554 ms
308,556 KB
testcase_04 AC 112 ms
91,264 KB
testcase_05 AC 41 ms
52,096 KB
testcase_06 AC 588 ms
301,920 KB
testcase_07 AC 258 ms
146,244 KB
testcase_08 AC 95 ms
85,632 KB
testcase_09 AC 95 ms
83,840 KB
testcase_10 AC 47 ms
57,856 KB
testcase_11 AC 50 ms
57,088 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
tot = int(input())
a = list(map(int, input().split()))
dp = [None] * (tot + 1)
dp[a[0]] = ''
for x in a[1:]:
    ndp = [None] * (tot + 1)
    for i in range(tot + 1):
        if dp[i] is not None:
            if i + x <= tot:
                t = dp[i] + '+'
                if ndp[i + x] is None or t < ndp[i + x]:
                    ndp[i + x] = t
            if i * x <= tot:
                t = dp[i] + ','
                if ndp[i * x] is None or t < ndp[i * x]:
                    ndp[i * x] = t
    dp = ndp
print(dp[tot].replace(',', '*'))
0