結果

問題 No.286 Modulo Discount Store
ユーザー hamachi470hamachi470
提出日時 2021-09-02 00:55:41
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 156 ms / 2,000 ms
コード長 422 bytes
コンパイル時間 146 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 82,816 KB
最終ジャッジ日時 2024-05-06 15:20:18
合計ジャッジ時間 4,105 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
51,968 KB
testcase_01 AC 60 ms
63,872 KB
testcase_02 AC 88 ms
77,440 KB
testcase_03 AC 42 ms
58,880 KB
testcase_04 AC 47 ms
61,440 KB
testcase_05 AC 35 ms
51,840 KB
testcase_06 AC 110 ms
79,104 KB
testcase_07 AC 36 ms
51,840 KB
testcase_08 AC 36 ms
51,968 KB
testcase_09 AC 36 ms
51,840 KB
testcase_10 AC 77 ms
76,928 KB
testcase_11 AC 41 ms
58,624 KB
testcase_12 AC 44 ms
58,496 KB
testcase_13 AC 86 ms
77,568 KB
testcase_14 AC 36 ms
51,968 KB
testcase_15 AC 38 ms
51,968 KB
testcase_16 AC 53 ms
64,256 KB
testcase_17 AC 156 ms
82,816 KB
testcase_18 AC 78 ms
76,800 KB
testcase_19 AC 36 ms
51,840 KB
testcase_20 AC 63 ms
68,864 KB
testcase_21 AC 36 ms
52,096 KB
testcase_22 AC 35 ms
52,224 KB
testcase_23 AC 91 ms
77,568 KB
testcase_24 AC 38 ms
52,096 KB
testcase_25 AC 64 ms
70,912 KB
testcase_26 AC 36 ms
51,840 KB
testcase_27 AC 64 ms
71,040 KB
testcase_28 AC 110 ms
79,232 KB
testcase_29 AC 37 ms
51,840 KB
testcase_30 AC 43 ms
51,968 KB
testcase_31 AC 68 ms
66,944 KB
testcase_32 AC 56 ms
65,792 KB
testcase_33 AC 37 ms
51,968 KB
testcase_34 AC 41 ms
51,840 KB
testcase_35 AC 61 ms
63,872 KB
testcase_36 AC 38 ms
51,712 KB
testcase_37 AC 66 ms
71,296 KB
testcase_38 AC 38 ms
51,712 KB
testcase_39 AC 108 ms
79,360 KB
testcase_40 AC 37 ms
51,968 KB
testcase_41 AC 37 ms
51,968 KB
testcase_42 AC 38 ms
51,840 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