結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 31 ms
10,880 KB
testcase_01 AC 29 ms
10,752 KB
testcase_02 AC 30 ms
10,752 KB
testcase_03 AC 535 ms
50,816 KB
testcase_04 AC 214 ms
37,248 KB
testcase_05 AC 29 ms
10,752 KB
testcase_06 AC 694 ms
50,816 KB
testcase_07 AC 394 ms
37,248 KB
testcase_08 AC 101 ms
18,688 KB
testcase_09 AC 160 ms
25,344 KB
testcase_10 AC 32 ms
11,008 KB
testcase_11 AC 30 ms
10,880 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