結果

問題 No.286 Modulo Discount Store
ユーザー lloyzlloyz
提出日時 2023-03-13 00:16:14
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 72 ms / 2,000 ms
コード長 432 bytes
コンパイル時間 278 ms
コンパイル使用メモリ 81,476 KB
実行使用メモリ 69,260 KB
最終ジャッジ日時 2024-09-18 07:16:58
合計ジャッジ時間 3,856 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,248 KB
testcase_01 AC 46 ms
60,260 KB
testcase_02 AC 60 ms
65,976 KB
testcase_03 AC 38 ms
53,892 KB
testcase_04 AC 38 ms
53,108 KB
testcase_05 AC 38 ms
52,760 KB
testcase_06 AC 60 ms
67,168 KB
testcase_07 AC 39 ms
52,580 KB
testcase_08 AC 37 ms
52,124 KB
testcase_09 AC 39 ms
51,940 KB
testcase_10 AC 57 ms
65,616 KB
testcase_11 AC 40 ms
52,620 KB
testcase_12 AC 39 ms
52,196 KB
testcase_13 AC 62 ms
67,068 KB
testcase_14 AC 38 ms
52,700 KB
testcase_15 AC 37 ms
52,764 KB
testcase_16 AC 46 ms
61,636 KB
testcase_17 AC 72 ms
69,260 KB
testcase_18 AC 55 ms
64,924 KB
testcase_19 AC 38 ms
53,392 KB
testcase_20 AC 53 ms
65,112 KB
testcase_21 AC 37 ms
52,716 KB
testcase_22 AC 39 ms
52,356 KB
testcase_23 AC 60 ms
68,412 KB
testcase_24 AC 38 ms
52,396 KB
testcase_25 AC 55 ms
64,996 KB
testcase_26 AC 38 ms
52,172 KB
testcase_27 AC 56 ms
65,016 KB
testcase_28 AC 62 ms
67,624 KB
testcase_29 AC 38 ms
52,408 KB
testcase_30 AC 38 ms
52,332 KB
testcase_31 AC 54 ms
65,144 KB
testcase_32 AC 53 ms
64,244 KB
testcase_33 AC 38 ms
52,736 KB
testcase_34 AC 38 ms
52,984 KB
testcase_35 AC 47 ms
60,764 KB
testcase_36 AC 37 ms
52,528 KB
testcase_37 AC 56 ms
65,620 KB
testcase_38 AC 39 ms
53,296 KB
testcase_39 AC 61 ms
67,024 KB
testcase_40 AC 38 ms
52,700 KB
testcase_41 AC 37 ms
52,632 KB
testcase_42 AC 38 ms
51,880 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
M = [int(input()) for _ in range(n)]

INF = 10**18
DP = [INF for _ in range(1 << n)]
DP[0] = 0
for bit in range((1 << n) - 1):
    res = 0
    for i in range(n):
        if (bit >> i) & 1:
            res += M[i]
            res %= 1000
    for i in range(n):
        if (bit >> i) & 1:
            continue
        nbit = bit | (1 << i)
        DP[nbit] = min(DP[nbit], DP[bit] + max(M[i] - res, 0))
print(DP[-1])
0