結果

問題 No.286 Modulo Discount Store
ユーザー brthyyjpbrthyyjp
提出日時 2021-09-28 01:04:08
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 63 ms / 2,000 ms
コード長 360 bytes
コンパイル時間 1,321 ms
コンパイル使用メモリ 81,588 KB
実行使用メモリ 69,336 KB
最終ジャッジ日時 2024-07-06 22:40:51
合計ジャッジ時間 3,291 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 33 ms
53,204 KB
testcase_01 AC 40 ms
61,132 KB
testcase_02 AC 49 ms
65,732 KB
testcase_03 AC 32 ms
53,268 KB
testcase_04 AC 34 ms
53,716 KB
testcase_05 AC 33 ms
52,116 KB
testcase_06 AC 55 ms
67,848 KB
testcase_07 AC 33 ms
53,280 KB
testcase_08 AC 37 ms
52,372 KB
testcase_09 AC 34 ms
52,136 KB
testcase_10 AC 47 ms
64,500 KB
testcase_11 AC 34 ms
54,076 KB
testcase_12 AC 32 ms
52,392 KB
testcase_13 AC 51 ms
67,612 KB
testcase_14 AC 34 ms
53,064 KB
testcase_15 AC 32 ms
52,468 KB
testcase_16 AC 40 ms
61,044 KB
testcase_17 AC 63 ms
69,336 KB
testcase_18 AC 47 ms
64,376 KB
testcase_19 AC 34 ms
52,696 KB
testcase_20 AC 47 ms
64,408 KB
testcase_21 AC 32 ms
53,908 KB
testcase_22 AC 32 ms
52,544 KB
testcase_23 AC 51 ms
67,128 KB
testcase_24 AC 35 ms
52,732 KB
testcase_25 AC 47 ms
65,352 KB
testcase_26 AC 35 ms
52,476 KB
testcase_27 AC 48 ms
65,204 KB
testcase_28 AC 56 ms
66,896 KB
testcase_29 AC 33 ms
52,460 KB
testcase_30 AC 32 ms
52,456 KB
testcase_31 AC 45 ms
64,856 KB
testcase_32 AC 46 ms
64,252 KB
testcase_33 AC 34 ms
52,828 KB
testcase_34 AC 33 ms
53,168 KB
testcase_35 AC 40 ms
61,100 KB
testcase_36 AC 33 ms
52,288 KB
testcase_37 AC 49 ms
66,060 KB
testcase_38 AC 33 ms
52,640 KB
testcase_39 AC 53 ms
66,468 KB
testcase_40 AC 32 ms
52,492 KB
testcase_41 AC 32 ms
52,220 KB
testcase_42 AC 32 ms
52,552 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

INF = 10**18
dp = [INF]*(1<<n)
dp[0] = 0
for s in range(1<<n):
    d = 0
    for i in range(n):
        if (s>>i)&1:
            d += M[i]
    d %= 1000
    for i in range(n):
        if (s>>i)&1:
            continue
        ns = s|(1<<i)
        dp[ns] = min(dp[ns], dp[s]+max(0, M[i]-d))
print(dp[-1])
0