結果

問題 No.10 +か×か
ユーザー zimphazimpha
提出日時 2017-12-07 02:26:34
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 143 ms / 5,000 ms
コード長 533 bytes
コンパイル時間 281 ms
コンパイル使用メモリ 82,372 KB
実行使用メモリ 102,528 KB
最終ジャッジ日時 2024-05-08 11:56:46
合計ジャッジ時間 1,692 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
51,968 KB
testcase_01 AC 38 ms
51,968 KB
testcase_02 AC 38 ms
51,712 KB
testcase_03 AC 140 ms
102,528 KB
testcase_04 AC 80 ms
87,672 KB
testcase_05 AC 38 ms
52,096 KB
testcase_06 AC 143 ms
102,528 KB
testcase_07 AC 90 ms
89,632 KB
testcase_08 AC 63 ms
70,016 KB
testcase_09 AC 69 ms
75,648 KB
testcase_10 AC 44 ms
58,752 KB
testcase_11 AC 42 ms
58,240 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
m = int(input())
a = list(map(int, input().split()))
inf = 1 << 60

f = [inf] * (m + 1)
f[0] = 0
for i, x in enumerate(a):
    g = [inf] * (m + 1)
    for j in range(m + 1):
        if f[j] == inf: continue
        if j + x <= m:
            g[j + x] = min(g[j + x], f[j])
        if j * x <= m:
            g[j * x] = min(g[j * x], f[j] | (1 << (n - i)))
    f = g
mask = f[m]
res = []
for i in range(n - 1, 0, -1):
    if mask >> i & 1:
        res.append('*')
    else:
        res.append('+')
print(''.join(res))
0