結果

問題 No.286 Modulo Discount Store
ユーザー rlangevinrlangevin
提出日時 2023-01-08 20:17:37
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 68 ms / 2,000 ms
コード長 436 bytes
コンパイル時間 695 ms
コンパイル使用メモリ 82,476 KB
実行使用メモリ 70,216 KB
最終ジャッジ日時 2024-05-09 11:21:13
合計ジャッジ時間 3,680 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,268 KB
testcase_01 AC 45 ms
60,476 KB
testcase_02 AC 56 ms
65,284 KB
testcase_03 AC 38 ms
52,132 KB
testcase_04 AC 39 ms
53,228 KB
testcase_05 AC 37 ms
53,020 KB
testcase_06 AC 58 ms
66,492 KB
testcase_07 AC 37 ms
53,228 KB
testcase_08 AC 37 ms
53,416 KB
testcase_09 AC 38 ms
52,204 KB
testcase_10 AC 53 ms
64,284 KB
testcase_11 AC 38 ms
52,408 KB
testcase_12 AC 38 ms
53,892 KB
testcase_13 AC 57 ms
66,748 KB
testcase_14 AC 37 ms
52,692 KB
testcase_15 AC 36 ms
52,064 KB
testcase_16 AC 44 ms
60,256 KB
testcase_17 AC 68 ms
70,216 KB
testcase_18 AC 53 ms
64,808 KB
testcase_19 AC 37 ms
52,952 KB
testcase_20 AC 52 ms
64,080 KB
testcase_21 AC 37 ms
53,912 KB
testcase_22 AC 37 ms
52,200 KB
testcase_23 AC 58 ms
67,512 KB
testcase_24 AC 37 ms
52,532 KB
testcase_25 AC 54 ms
64,412 KB
testcase_26 AC 37 ms
52,920 KB
testcase_27 AC 53 ms
65,016 KB
testcase_28 AC 59 ms
66,076 KB
testcase_29 AC 37 ms
52,408 KB
testcase_30 AC 37 ms
53,744 KB
testcase_31 AC 51 ms
64,588 KB
testcase_32 AC 50 ms
63,900 KB
testcase_33 AC 37 ms
52,624 KB
testcase_34 AC 37 ms
52,756 KB
testcase_35 AC 45 ms
61,072 KB
testcase_36 AC 37 ms
52,636 KB
testcase_37 AC 54 ms
65,236 KB
testcase_38 AC 37 ms
53,072 KB
testcase_39 AC 59 ms
65,940 KB
testcase_40 AC 36 ms
53,180 KB
testcase_41 AC 39 ms
52,208 KB
testcase_42 AC 38 ms
52,824 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
M = [0] * N
for i in range(N):
    M[i] = int(input())
    
inf = 10 ** 18
dp = [inf] * (1 << N)
dp[0] = 0
for s in range(1 << N):
    m = 0
    for i in range(N):
        if (s >> i) & 1:
            m += M[i]
            m %= 1000
    for i in range(N):
        if (s >> i)&1:
            continue
        ns = s | (1 << i)
        v = max(0, M[i] - m)
        dp[ns] = min(dp[ns], dp[s] + v)

print(dp[(1 << N) - 1])
0