結果

問題 No.10 +か×か
ユーザー kohei2019kohei2019
提出日時 2021-02-03 09:24:42
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 285 ms / 5,000 ms
コード長 568 bytes
コンパイル時間 164 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 104,192 KB
最終ジャッジ日時 2024-05-08 12:03:28
合計ジャッジ時間 2,325 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
52,224 KB
testcase_01 AC 41 ms
52,336 KB
testcase_02 AC 37 ms
52,236 KB
testcase_03 AC 279 ms
103,928 KB
testcase_04 AC 229 ms
92,320 KB
testcase_05 AC 39 ms
52,352 KB
testcase_06 AC 285 ms
104,192 KB
testcase_07 AC 256 ms
91,540 KB
testcase_08 AC 99 ms
70,400 KB
testcase_09 AC 138 ms
77,440 KB
testcase_10 AC 52 ms
61,824 KB
testcase_11 AC 47 ms
60,288 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
total = int(input())
lsA = list(map(int,input().split()))
dp = [[False]*(total+1) for i in range(N+1)]
dp[N][total] = True
for i in range(N-1,-1,-1):
    k = lsA[i]
    for j in range(total+1):
        if j%k == 0:
            dp[i][j//k] = dp[i][j//k] or dp[i+1][j]
        if j-k >= 0:
            dp[i][j-k] = dp[i][j-k] or dp[i+1][j]
v = lsA[0]
ans = []
for i in range(2,N+1):
    if v+lsA[i-1] <= total and dp[i][v+lsA[i-1]]:
        ans.append('+')
        v += lsA[i-1]
    else:
        ans.append('*')
        v *= lsA[i-1]
print(*ans,sep='')
0