結果

問題 No.10 +か×か
ユーザー roiti46
提出日時 2015-04-16 01:08:33
言語 Python2
(2.7.18)
結果
TLE  
実行時間 -
コード長 376 bytes
コンパイル時間 66 ms
コンパイル使用メモリ 7,040 KB
実行使用メモリ 454,156 KB
最終ジャッジ日時 2024-07-04 14:45:46
合計ジャッジ時間 6,803 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 3 TLE * 1 -- * 8
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(raw_input())
T = int(raw_input())
a = map(int, raw_input().split())
dp = set([(a[0],"")])

for ai in a[1:]:
    ndp = set([])
    for s, e in dp:
        if s+ai <= T: ndp.add((s+ai, e+"0"))
        if s*ai <= T: ndp.add((s*ai, e+"1"))
    dp = ndp
    
ans = "1"*100
for s, e in dp:
    if s == T:
        ans = min(ans, e)
print ans.replace("1","*").replace("0","+")
0