結果

問題 No.10 +か×か
ユーザー aaaaaaaaaa2230aaaaaaaaaa2230
提出日時 2021-04-12 22:16:07
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 153 ms / 5,000 ms
コード長 528 bytes
コンパイル時間 275 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 102,016 KB
最終ジャッジ日時 2024-05-08 12:04:33
合計ジャッジ時間 1,809 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
51,456 KB
testcase_01 AC 41 ms
51,584 KB
testcase_02 AC 41 ms
51,968 KB
testcase_03 AC 153 ms
102,016 KB
testcase_04 AC 89 ms
87,680 KB
testcase_05 AC 42 ms
51,840 KB
testcase_06 AC 151 ms
101,888 KB
testcase_07 AC 102 ms
89,472 KB
testcase_08 AC 71 ms
69,376 KB
testcase_09 AC 77 ms
75,648 KB
testcase_10 AC 49 ms
58,496 KB
testcase_11 AC 48 ms
57,728 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

inf = 1<<60
dp = [inf]*(total+1)
dp[0] = 0
for a in A:
    ndp = [inf]*(total+1)
    for j in range(total+1):
        if dp[j] == inf:
            continue
        if a+j <= total:
            ndp[a+j] = min(ndp[a+j],dp[j]<<1)
        if a*j <= total:
            ndp[a*j] = min(ndp[a*j],1+dp[j]<<1)
    dp = ndp

ans = []

for i in range(1,n)[::-1]:
    if dp[total] >> i & 1:
        ans.append("*")
    else:
        ans.append("+")
print(*ans,sep="")
0