結果

問題 No.10 +か×か
ユーザー matsu7874matsu7874
提出日時 2015-08-20 19:40:45
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 2,420 ms / 5,000 ms
コード長 779 bytes
コンパイル時間 90 ms
コンパイル使用メモリ 12,800 KB
実行使用メモリ 21,852 KB
最終ジャッジ日時 2024-12-14 15:31:11
合計ジャッジ時間 7,648 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 32 ms
10,752 KB
testcase_01 AC 35 ms
10,752 KB
testcase_02 AC 32 ms
10,752 KB
testcase_03 AC 2,400 ms
21,852 KB
testcase_04 AC 356 ms
13,340 KB
testcase_05 AC 31 ms
10,624 KB
testcase_06 AC 2,420 ms
21,368 KB
testcase_07 AC 1,066 ms
19,188 KB
testcase_08 AC 215 ms
13,344 KB
testcase_09 AC 252 ms
14,420 KB
testcase_10 AC 34 ms
10,880 KB
testcase_11 AC 32 ms
10,752 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+1):
            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