結果

問題 No.286 Modulo Discount Store
ユーザー AEnAEn
提出日時 2022-12-16 02:21:26
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 70 ms / 2,000 ms
コード長 360 bytes
コンパイル時間 221 ms
コンパイル使用メモリ 82,244 KB
実行使用メモリ 73,476 KB
最終ジャッジ日時 2024-04-27 06:24:49
合計ジャッジ時間 3,200 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
53,340 KB
testcase_01 AC 43 ms
61,372 KB
testcase_02 AC 56 ms
68,316 KB
testcase_03 AC 34 ms
52,952 KB
testcase_04 AC 35 ms
53,132 KB
testcase_05 AC 34 ms
53,420 KB
testcase_06 AC 63 ms
69,284 KB
testcase_07 AC 33 ms
51,824 KB
testcase_08 AC 33 ms
52,524 KB
testcase_09 AC 32 ms
53,092 KB
testcase_10 AC 54 ms
66,516 KB
testcase_11 AC 35 ms
53,488 KB
testcase_12 AC 34 ms
52,516 KB
testcase_13 AC 61 ms
69,564 KB
testcase_14 AC 36 ms
53,004 KB
testcase_15 AC 34 ms
53,256 KB
testcase_16 AC 43 ms
62,344 KB
testcase_17 AC 70 ms
73,476 KB
testcase_18 AC 55 ms
67,132 KB
testcase_19 AC 34 ms
53,692 KB
testcase_20 AC 49 ms
66,456 KB
testcase_21 AC 33 ms
53,216 KB
testcase_22 AC 33 ms
52,992 KB
testcase_23 AC 59 ms
70,300 KB
testcase_24 AC 35 ms
52,320 KB
testcase_25 AC 57 ms
67,764 KB
testcase_26 AC 34 ms
53,548 KB
testcase_27 AC 56 ms
68,300 KB
testcase_28 AC 61 ms
69,932 KB
testcase_29 AC 34 ms
52,816 KB
testcase_30 AC 34 ms
53,604 KB
testcase_31 AC 48 ms
65,064 KB
testcase_32 AC 48 ms
63,996 KB
testcase_33 AC 34 ms
52,824 KB
testcase_34 AC 37 ms
52,944 KB
testcase_35 AC 45 ms
61,760 KB
testcase_36 AC 35 ms
53,844 KB
testcase_37 AC 54 ms
67,784 KB
testcase_38 AC 34 ms
52,608 KB
testcase_39 AC 60 ms
70,164 KB
testcase_40 AC 34 ms
52,636 KB
testcase_41 AC 32 ms
53,000 KB
testcase_42 AC 32 ms
52,656 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

dp = [float('inf')]*(1<<N)
for i in range(N):
    dp[1<<i] = M[i]

for i in range(1<<N):
    c = 0
    for j in range(N):
        if i&(1<<j):
            c += M[j]
    c %= 1000
    for j in range(N):
        if not i&(1<<j):
            dp[i^(1<<j)] = min(dp[i^(1<<j)],dp[i]+max(0,M[j]-c))
print(dp[-1])
0