結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 33 ms
10,880 KB
testcase_01 AC 33 ms
10,624 KB
testcase_02 AC 32 ms
10,752 KB
testcase_03 AC 350 ms
52,748 KB
testcase_04 AC 40 ms
12,800 KB
testcase_05 AC 31 ms
10,880 KB
testcase_06 AC 621 ms
85,704 KB
testcase_07 AC 403 ms
48,748 KB
testcase_08 AC 55 ms
14,920 KB
testcase_09 AC 74 ms
18,764 KB
testcase_10 AC 28 ms
10,752 KB
testcase_11 AC 28 ms
10,752 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
                return memo[i, j]
            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