結果

問題 No.286 Modulo Discount Store
ユーザー ntudantuda
提出日時 2024-10-21 22:07:55
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 145 ms / 2,000 ms
コード長 466 bytes
コンパイル時間 550 ms
コンパイル使用メモリ 82,392 KB
実行使用メモリ 76,632 KB
最終ジャッジ日時 2024-10-21 22:07:59
合計ジャッジ時間 4,525 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
52,772 KB
testcase_01 AC 54 ms
66,524 KB
testcase_02 AC 72 ms
76,048 KB
testcase_03 AC 43 ms
60,860 KB
testcase_04 AC 44 ms
60,856 KB
testcase_05 AC 36 ms
53,832 KB
testcase_06 AC 96 ms
76,256 KB
testcase_07 AC 35 ms
52,392 KB
testcase_08 AC 36 ms
54,340 KB
testcase_09 AC 36 ms
52,676 KB
testcase_10 AC 66 ms
76,528 KB
testcase_11 AC 44 ms
61,032 KB
testcase_12 AC 43 ms
60,748 KB
testcase_13 AC 79 ms
76,112 KB
testcase_14 AC 37 ms
52,328 KB
testcase_15 AC 36 ms
53,020 KB
testcase_16 AC 53 ms
65,304 KB
testcase_17 AC 145 ms
76,632 KB
testcase_18 AC 57 ms
73,480 KB
testcase_19 AC 36 ms
53,200 KB
testcase_20 AC 56 ms
69,004 KB
testcase_21 AC 36 ms
53,208 KB
testcase_22 AC 38 ms
53,272 KB
testcase_23 AC 79 ms
75,972 KB
testcase_24 AC 36 ms
52,900 KB
testcase_25 AC 60 ms
69,960 KB
testcase_26 AC 36 ms
52,340 KB
testcase_27 AC 58 ms
69,748 KB
testcase_28 AC 99 ms
76,308 KB
testcase_29 AC 36 ms
53,372 KB
testcase_30 AC 36 ms
53,256 KB
testcase_31 AC 56 ms
68,416 KB
testcase_32 AC 52 ms
65,524 KB
testcase_33 AC 37 ms
52,824 KB
testcase_34 AC 36 ms
53,200 KB
testcase_35 AC 50 ms
65,808 KB
testcase_36 AC 35 ms
52,932 KB
testcase_37 AC 59 ms
71,624 KB
testcase_38 AC 35 ms
53,056 KB
testcase_39 AC 98 ms
76,388 KB
testcase_40 AC 35 ms
52,688 KB
testcase_41 AC 36 ms
52,552 KB
testcase_42 AC 36 ms
52,856 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
M = [int(input()) for _ in range(N)]
INF = 2 * 10 ** 5
N2 = 1 << N
dp = [INF] * N2
X = [0] * N2
dp[0] = 0
for i in range(N2):
    tmp = 0
    for j in range(N):
        if i & (1 << j):
            X[i] += M[j]
    X[i] %= 1000
for i in range(N):
    for j in range(N):
        for k in reversed(range(N2)):
            if not (k & (1 << j)):
                dp[k | (1 << j)] = min(dp[k | (1 << j)], dp[k] + max(0, M[j] - X[k]))
print(dp[(N2 - 1)])
0