結果

問題 No.10 +か×か
ユーザー しらっ亭しらっ亭
提出日時 2015-06-23 00:03:02
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 3,289 ms / 5,000 ms
コード長 928 bytes
コンパイル時間 197 ms
コンパイル使用メモリ 12,800 KB
実行使用メモリ 338,884 KB
最終ジャッジ日時 2024-12-14 15:30:26
合計ジャッジ時間 8,737 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 27 ms
10,752 KB
testcase_01 AC 26 ms
10,752 KB
testcase_02 AC 26 ms
10,752 KB
testcase_03 AC 3,089 ms
335,416 KB
testcase_04 AC 48 ms
13,388 KB
testcase_05 AC 30 ms
10,752 KB
testcase_06 AC 3,289 ms
338,884 KB
testcase_07 AC 1,067 ms
137,736 KB
testcase_08 AC 152 ms
27,096 KB
testcase_09 AC 83 ms
19,396 KB
testcase_10 AC 31 ms
10,752 KB
testcase_11 AC 29 ms
10,880 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def solve(N, T, A):
    memo = {}

    def able(i, j):
        if (i, j) in memo:
            return memo[i, j]
        memo[i, j] = False
        if i == N:
            if j == T:
                memo[i, j] = True
        else:
            if j + A[i] <= T and able(i + 1, j + A[i]):
                memo[i, j] = True
            if j * A[i] <= T and able(i + 1, j * A[i]):
                memo[i, j] = True
        return memo[i, j]

    ans = []
    j = A[0]
    for i in range(1, N):
        if j + A[i] <= T and able(i + 1, j + A[i]):
            ans.append('+')
            j += A[i]
            continue
        if j * A[i] <= T and able(i + 1, j * A[i]):
            ans.append('*')
            j *= A[i]
            continue
    return ''.join(ans)


def main():
    n = int(input())
    total = int(input())
    a = list(map(int, input().split()))
    print(solve(n, total, a))


if __name__ == '__main__':
    main()
0