結果

問題 No.286 Modulo Discount Store
ユーザー roarisroaris
提出日時 2019-12-07 15:00:44
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 72 ms / 2,000 ms
コード長 351 bytes
コンパイル時間 189 ms
コンパイル使用メモリ 82,452 KB
実行使用メモリ 71,552 KB
最終ジャッジ日時 2024-06-07 14:19:38
合計ジャッジ時間 3,598 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
52,432 KB
testcase_01 AC 44 ms
60,476 KB
testcase_02 AC 57 ms
66,592 KB
testcase_03 AC 40 ms
53,000 KB
testcase_04 AC 40 ms
54,188 KB
testcase_05 AC 39 ms
52,984 KB
testcase_06 AC 63 ms
67,116 KB
testcase_07 AC 37 ms
52,448 KB
testcase_08 AC 36 ms
52,448 KB
testcase_09 AC 37 ms
52,304 KB
testcase_10 AC 55 ms
64,724 KB
testcase_11 AC 37 ms
52,484 KB
testcase_12 AC 39 ms
53,132 KB
testcase_13 AC 61 ms
67,864 KB
testcase_14 AC 38 ms
52,740 KB
testcase_15 AC 37 ms
52,016 KB
testcase_16 AC 45 ms
61,460 KB
testcase_17 AC 72 ms
71,552 KB
testcase_18 AC 54 ms
64,524 KB
testcase_19 AC 37 ms
52,760 KB
testcase_20 AC 54 ms
64,436 KB
testcase_21 AC 38 ms
52,952 KB
testcase_22 AC 37 ms
52,956 KB
testcase_23 AC 60 ms
68,360 KB
testcase_24 AC 38 ms
52,072 KB
testcase_25 AC 54 ms
66,364 KB
testcase_26 AC 38 ms
53,072 KB
testcase_27 AC 58 ms
65,900 KB
testcase_28 AC 64 ms
67,864 KB
testcase_29 AC 40 ms
52,672 KB
testcase_30 AC 39 ms
52,596 KB
testcase_31 AC 56 ms
66,104 KB
testcase_32 AC 54 ms
64,828 KB
testcase_33 AC 38 ms
52,068 KB
testcase_34 AC 37 ms
52,016 KB
testcase_35 AC 47 ms
61,496 KB
testcase_36 AC 37 ms
52,528 KB
testcase_37 AC 57 ms
65,944 KB
testcase_38 AC 37 ms
53,872 KB
testcase_39 AC 61 ms
66,616 KB
testcase_40 AC 38 ms
53,220 KB
testcase_41 AC 38 ms
52,068 KB
testcase_42 AC 39 ms
52,236 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
M = [int(input()) for _ in range(N)]
dp = [10**18]*(1<<N)
dp[0] = 0

for S in range(1<<N):
    c = 0
    
    for i in range(N):
        if (S>>i)&1:
            c += M[i]
    
    bonus = c%1000
    
    for i in range(N):
        if not (S>>i)&1:
            dp[S|(1<<i)] = min(dp[S|(1<<i)], dp[S]+max(0, M[i]-bonus))

print(dp[-1])
0