結果

問題 No.286 Modulo Discount Store
ユーザー hamachi470hamachi470
提出日時 2021-09-02 00:55:41
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 138 ms / 2,000 ms
コード長 422 bytes
コンパイル時間 283 ms
コンパイル使用メモリ 82,368 KB
実行使用メモリ 82,808 KB
最終ジャッジ日時 2024-11-28 22:53:55
合計ジャッジ時間 3,617 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
52,008 KB
testcase_01 AC 50 ms
64,344 KB
testcase_02 AC 73 ms
77,864 KB
testcase_03 AC 37 ms
58,772 KB
testcase_04 AC 44 ms
63,244 KB
testcase_05 AC 32 ms
52,636 KB
testcase_06 AC 89 ms
79,276 KB
testcase_07 AC 33 ms
52,388 KB
testcase_08 AC 32 ms
53,384 KB
testcase_09 AC 35 ms
52,828 KB
testcase_10 AC 66 ms
76,928 KB
testcase_11 AC 37 ms
59,216 KB
testcase_12 AC 38 ms
59,604 KB
testcase_13 AC 75 ms
77,528 KB
testcase_14 AC 34 ms
53,028 KB
testcase_15 AC 33 ms
52,200 KB
testcase_16 AC 45 ms
65,144 KB
testcase_17 AC 138 ms
82,808 KB
testcase_18 AC 64 ms
76,816 KB
testcase_19 AC 33 ms
52,536 KB
testcase_20 AC 53 ms
69,036 KB
testcase_21 AC 33 ms
52,744 KB
testcase_22 AC 33 ms
52,952 KB
testcase_23 AC 78 ms
77,636 KB
testcase_24 AC 34 ms
53,560 KB
testcase_25 AC 56 ms
71,276 KB
testcase_26 AC 33 ms
53,232 KB
testcase_27 AC 55 ms
71,984 KB
testcase_28 AC 92 ms
79,076 KB
testcase_29 AC 33 ms
53,664 KB
testcase_30 AC 33 ms
52,756 KB
testcase_31 AC 50 ms
67,496 KB
testcase_32 AC 48 ms
66,992 KB
testcase_33 AC 35 ms
52,932 KB
testcase_34 AC 34 ms
52,944 KB
testcase_35 AC 47 ms
64,284 KB
testcase_36 AC 33 ms
52,004 KB
testcase_37 AC 55 ms
71,924 KB
testcase_38 AC 33 ms
52,876 KB
testcase_39 AC 91 ms
79,176 KB
testcase_40 AC 34 ms
52,880 KB
testcase_41 AC 35 ms
52,200 KB
testcase_42 AC 34 ms
53,820 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

inf = 10**12
dp = [[inf]*N for _ in range(2**N)]
dp[0] = [0]*N
for bit in range(2**N):
  for r in range(N):
    if bit>>r & 1:
      continue
    dis = 0
    for l in range(N):
      if bit>>l & 1:
        dis += M[l]
        dis %= 1000
    price = max(0, M[r]-dis)
    dp[bit+2**r][r] = min(dp[bit+2**r][r], min(dp[bit])+price)

print(min(dp[2**N-1]))
0