結果

問題 No.10 +か×か
ユーザー HydruHydru
提出日時 2023-01-16 15:30:36
言語 PyPy3
(7.3.15)
結果
MLE  
実行時間 -
コード長 514 bytes
コンパイル時間 187 ms
コンパイル使用メモリ 82,132 KB
実行使用メモリ 521,416 KB
最終ジャッジ日時 2024-06-09 21:47:40
合計ジャッジ時間 6,219 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
53,056 KB
testcase_01 AC 38 ms
51,752 KB
testcase_02 AC 37 ms
52,936 KB
testcase_03 MLE -
testcase_04 AC 754 ms
368,832 KB
testcase_05 AC 38 ms
52,660 KB
testcase_06 MLE -
testcase_07 AC 754 ms
368,472 KB
testcase_08 AC 191 ms
148,292 KB
testcase_09 AC 324 ms
225,360 KB
testcase_10 AC 45 ms
62,540 KB
testcase_11 AC 41 ms
59,380 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

DP=[[[0,0] for _ in range(total+1)] for _ in range(n+1)]

DP[n][total][0]=1

for i in range(n-1,-1,-1):
    for j in range(A[i],total+1):
        if DP[i+1][j][0]==0 and DP[i+1][j][1]==0:
            continue
        if j%A[i]==0:
            DP[i][j//A[i]][1]=1
        DP[i][j-A[i]][0]=1


ans=""
num=A[0]

for i in range(1,n):
    if DP[i][num][0]==1:
        ans+="+"
        num+=A[i]
    else:
        ans+="*"
        num*=A[i]

print(ans)
0