結果

問題 No.10 +か×か
ユーザー convexineqconvexineq
提出日時 2020-12-06 21:24:19
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 134 ms / 5,000 ms
コード長 424 bytes
コンパイル時間 171 ms
コンパイル使用メモリ 82,056 KB
実行使用メモリ 102,144 KB
最終ジャッジ日時 2024-12-14 15:46:55
合計ジャッジ時間 1,569 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
51,840 KB
testcase_01 AC 39 ms
51,712 KB
testcase_02 AC 38 ms
52,096 KB
testcase_03 AC 134 ms
102,144 KB
testcase_04 AC 78 ms
87,168 KB
testcase_05 AC 40 ms
52,096 KB
testcase_06 AC 131 ms
101,760 KB
testcase_07 AC 89 ms
89,728 KB
testcase_08 AC 64 ms
70,016 KB
testcase_09 AC 66 ms
75,008 KB
testcase_10 AC 45 ms
58,168 KB
testcase_11 AC 41 ms
57,984 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
t = int(input())
*a, = map(int,input().split())

dp = [-1]*(t+1) # +: 1 *: 0
dp[a[0]] = 0
for ai in a[1:]:
    ndp = [-1]*(t+1)
    for i,xi in enumerate(dp):
        if xi==-1: continue
        if i*ai <= t:
            ndp[i*ai] = max(ndp[i*ai], xi*2)
        if i+ai <= t:
            ndp[i+ai] = max(ndp[i+ai], xi*2+1)
    dp = ndp

print("".join(["+" if dp[t]>>i&1 else "*" for i in range(n-2,-1,-1)]))
0