結果

問題 No.286 Modulo Discount Store
ユーザー AEnAEn
提出日時 2022-12-16 02:21:26
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 90 ms / 2,000 ms
コード長 360 bytes
コンパイル時間 359 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 72,448 KB
最終ジャッジ日時 2024-11-15 06:17:16
合計ジャッジ時間 4,039 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
51,840 KB
testcase_01 AC 50 ms
60,416 KB
testcase_02 AC 76 ms
66,816 KB
testcase_03 AC 40 ms
52,096 KB
testcase_04 AC 40 ms
52,224 KB
testcase_05 AC 40 ms
51,712 KB
testcase_06 AC 72 ms
68,864 KB
testcase_07 AC 40 ms
51,584 KB
testcase_08 AC 38 ms
51,968 KB
testcase_09 AC 40 ms
51,968 KB
testcase_10 AC 65 ms
65,920 KB
testcase_11 AC 39 ms
51,840 KB
testcase_12 AC 40 ms
52,224 KB
testcase_13 AC 74 ms
69,120 KB
testcase_14 AC 40 ms
52,096 KB
testcase_15 AC 41 ms
51,968 KB
testcase_16 AC 50 ms
60,800 KB
testcase_17 AC 90 ms
72,448 KB
testcase_18 AC 65 ms
66,304 KB
testcase_19 AC 41 ms
51,968 KB
testcase_20 AC 65 ms
65,280 KB
testcase_21 AC 41 ms
52,096 KB
testcase_22 AC 40 ms
52,224 KB
testcase_23 AC 75 ms
68,864 KB
testcase_24 AC 41 ms
52,480 KB
testcase_25 AC 69 ms
67,328 KB
testcase_26 AC 40 ms
52,096 KB
testcase_27 AC 68 ms
66,944 KB
testcase_28 AC 75 ms
68,352 KB
testcase_29 AC 40 ms
51,840 KB
testcase_30 AC 40 ms
51,840 KB
testcase_31 AC 59 ms
64,256 KB
testcase_32 AC 58 ms
63,488 KB
testcase_33 AC 40 ms
51,968 KB
testcase_34 AC 40 ms
52,224 KB
testcase_35 AC 51 ms
60,928 KB
testcase_36 AC 40 ms
51,712 KB
testcase_37 AC 66 ms
66,560 KB
testcase_38 AC 40 ms
52,352 KB
testcase_39 AC 76 ms
68,736 KB
testcase_40 AC 40 ms
51,968 KB
testcase_41 AC 44 ms
51,840 KB
testcase_42 AC 46 ms
51,712 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