結果

問題 No.10 +か×か
ユーザー szkhtsszkhts
提出日時 2020-10-23 12:00:29
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 710 ms / 5,000 ms
コード長 536 bytes
コンパイル時間 115 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 50,816 KB
最終ジャッジ日時 2024-12-14 15:46:48
合計ジャッジ時間 3,086 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
10,880 KB
testcase_01 AC 33 ms
10,752 KB
testcase_02 AC 30 ms
10,752 KB
testcase_03 AC 548 ms
50,816 KB
testcase_04 AC 225 ms
37,248 KB
testcase_05 AC 31 ms
10,752 KB
testcase_06 AC 710 ms
50,816 KB
testcase_07 AC 402 ms
37,248 KB
testcase_08 AC 102 ms
18,688 KB
testcase_09 AC 164 ms
25,344 KB
testcase_10 AC 32 ms
10,880 KB
testcase_11 AC 31 ms
10,752 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys

N = int(input())
Total = int(input())
A = list(map(int, input().split()))
dp = [[0 for _ in range(Total + 1)] for _ in range(N + 1)]

def dfs(ops, cur, v):
    if v > Total:
        return
    if cur == N:
        if v == Total:
            print(ops) 
            sys.exit()
        return
    if dp[cur][v]:
        return
    
    dp[cur][v] = 1
    ops += '+'
    dfs(ops, cur + 1, v + A[cur])
    ops = ops[0 : -1]
    
    ops += '*'
    dfs(ops, cur + 1, v * A[cur])
    ops = ops[0 : -1]

ops = ''
dfs(ops, 1, A[0])
0