結果

問題 No.10 +か×か
ユーザー matsu7874matsu7874
提出日時 2015-08-20 19:33:33
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
RE  
実行時間 -
コード長 777 bytes
コンパイル時間 137 ms
コンパイル使用メモリ 12,928 KB
実行使用メモリ 21,596 KB
最終ジャッジ日時 2024-07-18 10:56:35
合計ジャッジ時間 6,929 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 27 ms
10,624 KB
testcase_01 AC 27 ms
10,752 KB
testcase_02 AC 29 ms
10,624 KB
testcase_03 AC 2,233 ms
21,596 KB
testcase_04 AC 320 ms
13,088 KB
testcase_05 RE -
testcase_06 AC 2,199 ms
21,224 KB
testcase_07 WA -
testcase_08 AC 204 ms
13,468 KB
testcase_09 AC 231 ms
14,420 KB
testcase_10 AC 28 ms
10,880 KB
testcase_11 AC 29 ms
10,624 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def main():
    INF = float('inf')
    N = int(input())
    Total = int(input())
    A = [int(x) for x in input().split()]
    dp = [INF for i in range(Total + 1)]
    dp[A[0]] = 0
    for i in range(1,N):
        dp_next = [INF for i in range(Total + 1)]
        for j in range(Total):
            if dp[j] == INF:
                continue
            if j + A[i] <= Total:
                dp_next[j + A[i]] = min(dp_next[j + A[i]], dp[j] * 2)
            if j * A[i] <= Total:
                dp_next[j * A[i]] = min(dp_next[j * A[i]], dp[j] * 2 + 1)
        dp = dp_next[:]
    for i in range(N-1):
        if (dp[Total] >> (N - 2 - i)) % 2 == 1:
            print('*', end='')
        else:
            print('+', end='')
    print()

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