結果

問題 No.286 Modulo Discount Store
ユーザー ああいいああいい
提出日時 2022-03-17 22:45:56
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 74 ms / 2,000 ms
コード長 538 bytes
コンパイル時間 430 ms
コンパイル使用メモリ 82,452 KB
実行使用メモリ 70,676 KB
最終ジャッジ日時 2024-10-01 21:47:29
合計ジャッジ時間 3,513 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
53,268 KB
testcase_01 AC 48 ms
63,476 KB
testcase_02 AC 57 ms
65,548 KB
testcase_03 AC 37 ms
53,228 KB
testcase_04 AC 39 ms
53,436 KB
testcase_05 AC 37 ms
53,384 KB
testcase_06 AC 64 ms
68,676 KB
testcase_07 AC 37 ms
52,740 KB
testcase_08 AC 37 ms
52,096 KB
testcase_09 AC 36 ms
53,576 KB
testcase_10 AC 54 ms
64,400 KB
testcase_11 AC 38 ms
52,864 KB
testcase_12 AC 38 ms
52,768 KB
testcase_13 AC 56 ms
66,368 KB
testcase_14 AC 40 ms
52,552 KB
testcase_15 AC 40 ms
53,944 KB
testcase_16 AC 46 ms
62,212 KB
testcase_17 AC 74 ms
70,676 KB
testcase_18 AC 55 ms
65,216 KB
testcase_19 AC 37 ms
53,228 KB
testcase_20 AC 52 ms
63,540 KB
testcase_21 AC 36 ms
52,544 KB
testcase_22 AC 36 ms
53,156 KB
testcase_23 AC 57 ms
66,152 KB
testcase_24 AC 37 ms
52,320 KB
testcase_25 AC 55 ms
65,392 KB
testcase_26 AC 36 ms
53,308 KB
testcase_27 AC 53 ms
65,912 KB
testcase_28 AC 61 ms
67,128 KB
testcase_29 AC 37 ms
52,588 KB
testcase_30 AC 36 ms
52,188 KB
testcase_31 AC 51 ms
65,900 KB
testcase_32 AC 51 ms
63,796 KB
testcase_33 AC 39 ms
52,936 KB
testcase_34 AC 36 ms
52,728 KB
testcase_35 AC 47 ms
62,364 KB
testcase_36 AC 36 ms
52,404 KB
testcase_37 AC 52 ms
65,776 KB
testcase_38 AC 36 ms
52,400 KB
testcase_39 AC 60 ms
67,908 KB
testcase_40 AC 38 ms
52,528 KB
testcase_41 AC 36 ms
51,876 KB
testcase_42 AC 36 ms
52,320 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
M = [int(input()) for _ in range(N)]
inf = 10 ** 7
dp = [inf] * (1 << N)
for i in range(N):
    mask = 1 << i
    dp[mask] = M[i]
Sum = [0] * (1 << N)
for bit in range(1 << N):
    for i in range(N):
        mask = 1 << i
        if bit & mask == 0:
            Sum[bit | mask] = Sum[bit] + M[i]
            
for bit in range(1,1 << N):
    r = Sum[bit] % 1000
    for i in range(N):
        mask = 1 << i
        if bit & mask == 0:
            dp[bit | mask] = min(dp[bit | mask],dp[bit] + max(0,M[i]-r))
print(dp[-1])
0