結果

問題 No.286 Modulo Discount Store
ユーザー rlangevinrlangevin
提出日時 2023-01-08 20:07:53
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 533 bytes
コンパイル時間 229 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 401,536 KB
最終ジャッジ日時 2024-12-15 23:37:23
合計ジャッジ時間 15,215 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 59 ms
69,120 KB
testcase_01 AC 95 ms
75,392 KB
testcase_02 AC 728 ms
140,032 KB
testcase_03 AC 63 ms
65,536 KB
testcase_04 AC 73 ms
68,736 KB
testcase_05 AC 60 ms
64,128 KB
testcase_06 AC 1,456 ms
204,288 KB
testcase_07 AC 49 ms
58,624 KB
testcase_08 AC 64 ms
65,920 KB
testcase_09 AC 59 ms
64,128 KB
testcase_10 AC 387 ms
107,904 KB
testcase_11 AC 63 ms
65,280 KB
testcase_12 AC 65 ms
65,408 KB
testcase_13 AC 777 ms
140,032 KB
testcase_14 AC 67 ms
67,968 KB
testcase_15 AC 58 ms
64,128 KB
testcase_16 AC 92 ms
74,624 KB
testcase_17 TLE -
testcase_18 AC 377 ms
105,620 KB
testcase_19 AC 58 ms
64,104 KB
testcase_20 AC 147 ms
82,176 KB
testcase_21 AC 61 ms
64,556 KB
testcase_22 AC 60 ms
64,512 KB
testcase_23 AC 793 ms
140,032 KB
testcase_24 AC 72 ms
67,712 KB
testcase_25 AC 261 ms
92,360 KB
testcase_26 AC 59 ms
64,128 KB
testcase_27 AC 244 ms
92,144 KB
testcase_28 AC 1,515 ms
204,160 KB
testcase_29 AC 60 ms
64,000 KB
testcase_30 AC 64 ms
64,128 KB
testcase_31 AC 129 ms
79,872 KB
testcase_32 AC 112 ms
75,136 KB
testcase_33 AC 66 ms
64,512 KB
testcase_34 AC 60 ms
64,384 KB
testcase_35 AC 83 ms
70,784 KB
testcase_36 AC 49 ms
58,496 KB
testcase_37 AC 237 ms
92,032 KB
testcase_38 AC 58 ms
63,872 KB
testcase_39 AC 1,510 ms
204,160 KB
testcase_40 AC 69 ms
68,352 KB
testcase_41 AC 67 ms
67,712 KB
testcase_42 AC 72 ms
401,536 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def f(s, m):
    return s * 1000 + m

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