結果

問題 No.286 Modulo Discount Store
ユーザー wgrapewgrape
提出日時 2024-10-17 13:59:31
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 80 ms / 2,000 ms
コード長 485 bytes
コンパイル時間 619 ms
コンパイル使用メモリ 82,452 KB
実行使用メモリ 70,124 KB
最終ジャッジ日時 2024-10-17 13:59:38
合計ジャッジ時間 4,150 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 32 ms
53,188 KB
testcase_01 AC 37 ms
61,592 KB
testcase_02 AC 48 ms
65,244 KB
testcase_03 AC 32 ms
53,048 KB
testcase_04 AC 32 ms
52,836 KB
testcase_05 AC 31 ms
52,812 KB
testcase_06 AC 80 ms
66,388 KB
testcase_07 AC 33 ms
53,280 KB
testcase_08 AC 32 ms
53,152 KB
testcase_09 AC 32 ms
52,692 KB
testcase_10 AC 45 ms
64,504 KB
testcase_11 AC 32 ms
52,748 KB
testcase_12 AC 32 ms
53,552 KB
testcase_13 AC 51 ms
66,592 KB
testcase_14 AC 30 ms
53,160 KB
testcase_15 AC 31 ms
53,140 KB
testcase_16 AC 38 ms
62,100 KB
testcase_17 AC 59 ms
70,124 KB
testcase_18 AC 44 ms
64,332 KB
testcase_19 AC 31 ms
52,876 KB
testcase_20 AC 45 ms
63,980 KB
testcase_21 AC 31 ms
52,000 KB
testcase_22 AC 34 ms
53,508 KB
testcase_23 AC 55 ms
66,844 KB
testcase_24 AC 34 ms
53,216 KB
testcase_25 AC 51 ms
65,448 KB
testcase_26 AC 35 ms
52,580 KB
testcase_27 AC 52 ms
64,980 KB
testcase_28 AC 57 ms
66,496 KB
testcase_29 AC 35 ms
52,448 KB
testcase_30 AC 33 ms
52,904 KB
testcase_31 AC 48 ms
64,176 KB
testcase_32 AC 45 ms
64,848 KB
testcase_33 AC 35 ms
52,200 KB
testcase_34 AC 32 ms
52,744 KB
testcase_35 AC 42 ms
60,528 KB
testcase_36 AC 34 ms
52,208 KB
testcase_37 AC 49 ms
65,836 KB
testcase_38 AC 33 ms
52,576 KB
testcase_39 AC 52 ms
66,576 KB
testcase_40 AC 31 ms
52,868 KB
testcase_41 AC 33 ms
53,536 KB
testcase_42 AC 32 ms
52,364 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

INF = 1 << 60
dp = [INF] * (1 << N)

dp[0] = 0
for status in range(1 << N):
    cur_price = 0
    for i in range(N):
        if (status >> i) & 1:
            cur_price += M[i]
    discount = cur_price % 1000
    for i in range(N):
        if (status >> i) & 1:
            continue
        next_status = status | (1 << i)
        dp[next_status] = min(dp[next_status], dp[status] + max(0, M[i] - discount))
        
print(dp[-1])
0