結果

問題 No.286 Modulo Discount Store
ユーザー mlihua09mlihua09
提出日時 2020-09-16 16:04:13
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 98 ms / 2,000 ms
コード長 417 bytes
コンパイル時間 265 ms
コンパイル使用メモリ 82,384 KB
実行使用メモリ 77,068 KB
最終ジャッジ日時 2024-06-22 03:19:25
合計ジャッジ時間 3,897 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
53,340 KB
testcase_01 AC 41 ms
53,944 KB
testcase_02 AC 76 ms
76,248 KB
testcase_03 AC 37 ms
53,252 KB
testcase_04 AC 38 ms
53,680 KB
testcase_05 AC 37 ms
52,324 KB
testcase_06 AC 82 ms
76,496 KB
testcase_07 AC 36 ms
51,952 KB
testcase_08 AC 36 ms
53,000 KB
testcase_09 AC 37 ms
52,660 KB
testcase_10 AC 69 ms
76,456 KB
testcase_11 AC 38 ms
52,580 KB
testcase_12 AC 37 ms
54,088 KB
testcase_13 AC 81 ms
76,696 KB
testcase_14 AC 38 ms
52,736 KB
testcase_15 AC 38 ms
53,076 KB
testcase_16 AC 40 ms
55,016 KB
testcase_17 AC 98 ms
77,068 KB
testcase_18 AC 69 ms
76,184 KB
testcase_19 AC 38 ms
54,012 KB
testcase_20 AC 58 ms
66,976 KB
testcase_21 AC 38 ms
53,412 KB
testcase_22 AC 37 ms
52,588 KB
testcase_23 AC 81 ms
76,300 KB
testcase_24 AC 38 ms
53,940 KB
testcase_25 AC 66 ms
73,112 KB
testcase_26 AC 37 ms
53,492 KB
testcase_27 AC 66 ms
73,732 KB
testcase_28 AC 83 ms
76,816 KB
testcase_29 AC 38 ms
53,144 KB
testcase_30 AC 37 ms
53,080 KB
testcase_31 AC 51 ms
63,464 KB
testcase_32 AC 51 ms
63,440 KB
testcase_33 AC 38 ms
53,004 KB
testcase_34 AC 38 ms
53,880 KB
testcase_35 AC 40 ms
54,228 KB
testcase_36 AC 38 ms
52,320 KB
testcase_37 AC 66 ms
73,308 KB
testcase_38 AC 36 ms
52,952 KB
testcase_39 AC 84 ms
76,420 KB
testcase_40 AC 37 ms
52,944 KB
testcase_41 AC 37 ms
54,232 KB
testcase_42 AC 37 ms
52,688 KB
権限があれば一括ダウンロードができます

ソースコード

diff #


N = int(input())

M = [int(input()) for i in range(N)]

DP = [10 ** 9] * 2 ** N
X = [0] * 2 ** N

DP[0] = 0

from itertools import combinations

for i in range(1, N + 1):
    
    for C in combinations(range(N), r=i):
        
        x = sum([2 ** c for c in C])
        X[x] = X[x - 2 ** C[0]] + M[C[0]]
        
        DP[x] = min([DP[x - 2 ** c] + max(0, M[c] - X[x - 2 ** c] % 1000) for c in C])
print(DP[-1])
0