結果

問題 No.286 Modulo Discount Store
ユーザー SI1000-githubSI1000-github
提出日時 2022-10-25 14:42:25
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 99 ms / 2,000 ms
コード長 877 bytes
コンパイル時間 547 ms
コンパイル使用メモリ 82,452 KB
実行使用メモリ 79,968 KB
最終ジャッジ日時 2024-07-03 13:41:01
合計ジャッジ時間 3,632 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
53,268 KB
testcase_01 AC 48 ms
63,352 KB
testcase_02 AC 60 ms
67,944 KB
testcase_03 AC 38 ms
52,820 KB
testcase_04 AC 38 ms
53,740 KB
testcase_05 AC 36 ms
52,996 KB
testcase_06 AC 73 ms
74,036 KB
testcase_07 AC 36 ms
52,280 KB
testcase_08 AC 36 ms
52,964 KB
testcase_09 AC 38 ms
53,716 KB
testcase_10 AC 61 ms
68,052 KB
testcase_11 AC 38 ms
52,964 KB
testcase_12 AC 37 ms
53,488 KB
testcase_13 AC 62 ms
69,268 KB
testcase_14 AC 38 ms
53,816 KB
testcase_15 AC 36 ms
52,652 KB
testcase_16 AC 47 ms
62,376 KB
testcase_17 AC 99 ms
79,968 KB
testcase_18 AC 60 ms
69,252 KB
testcase_19 AC 38 ms
52,868 KB
testcase_20 AC 53 ms
66,312 KB
testcase_21 AC 37 ms
53,256 KB
testcase_22 AC 37 ms
52,524 KB
testcase_23 AC 68 ms
71,156 KB
testcase_24 AC 37 ms
53,088 KB
testcase_25 AC 68 ms
73,108 KB
testcase_26 AC 36 ms
53,420 KB
testcase_27 AC 63 ms
69,136 KB
testcase_28 AC 74 ms
74,468 KB
testcase_29 AC 36 ms
53,284 KB
testcase_30 AC 37 ms
52,344 KB
testcase_31 AC 51 ms
64,988 KB
testcase_32 AC 49 ms
63,756 KB
testcase_33 AC 36 ms
52,816 KB
testcase_34 AC 36 ms
53,980 KB
testcase_35 AC 46 ms
63,684 KB
testcase_36 AC 37 ms
52,280 KB
testcase_37 AC 59 ms
69,136 KB
testcase_38 AC 37 ms
53,708 KB
testcase_39 AC 74 ms
73,760 KB
testcase_40 AC 36 ms
53,340 KB
testcase_41 AC 36 ms
52,928 KB
testcase_42 AC 36 ms
52,852 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#!/usr/bin/python
# -*- coding: utf-8 -*-

# import
from sys import stdin, setrecursionlimit
setrecursionlimit(10**8)

def int_map():
    return map(int,input().split())

def int_list():
    return list(map(int,input().split()))

def int_mtx(N):
    x = [list(map(int, stdin.readline().split())) for _ in range(N)]
    return x

def str_mtx(N):
    x = [list(stdin.readline()[:-1]) for _ in range(N)]
    return x

def print_space(l):
    return print(" ".join([str(x) for x in l]))



"""    main code    """

N = int(input())
M = []
for _ in range(N):
    Mi = int(input())
    M.append(Mi)

dp = [[float("INF"),0] for _ in range(2**N)]
dp[0][0] = 0

for s in range(2**N):
    for u in range(N):
        if s >> u & 1 == 0:
            dp[s+2**u][0] = min(dp[s+2**u][0],dp[s][0]+max(0,M[u]-dp[s][1]))
            dp[s+2**u][1] = (dp[s][1]+M[u])%1000

print(dp[2**N-1][0])


0