結果

問題 No.10 +か×か
ユーザー roarisroaris
提出日時 2020-07-25 22:09:11
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 314 ms / 5,000 ms
コード長 540 bytes
コンパイル時間 323 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 105,856 KB
最終ジャッジ日時 2024-12-14 15:45:50
合計ジャッジ時間 2,773 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
52,224 KB
testcase_01 AC 38 ms
51,968 KB
testcase_02 AC 40 ms
51,840 KB
testcase_03 AC 314 ms
104,576 KB
testcase_04 AC 276 ms
91,136 KB
testcase_05 AC 40 ms
51,840 KB
testcase_06 AC 304 ms
105,856 KB
testcase_07 AC 246 ms
90,624 KB
testcase_08 AC 105 ms
71,680 KB
testcase_09 AC 142 ms
77,312 KB
testcase_10 AC 57 ms
61,824 KB
testcase_11 AC 50 ms
60,288 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
T = int(input())
A = list(map(int, input().split()))
A.reverse()
dp = [[False]*(T+1) for _ in range(N)]
dp[0][T] = True

for i in range(N-1):
    for j in range(T+1):
        if j%A[i]==0:
            dp[i+1][j//A[i]] |= dp[i][j]
        
        if j-A[i]>=0:
            dp[i+1][j-A[i]] |= dp[i][j]
        
ans = []
now = A[-1]

for i in range(N-2, -1, -1):
    if now+A[i]<=T and dp[i][now+A[i]]:
        ans.append('+')
        now += A[i]
    else:
        ans.append('*')
        now *= A[i]
    
print(''.join(ans))
0