結果

問題 No.286 Modulo Discount Store
ユーザー Navier_BoltzmannNavier_Boltzmann
提出日時 2022-10-12 04:58:23
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 93 ms / 2,000 ms
コード長 615 bytes
コンパイル時間 270 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 77,824 KB
最終ジャッジ日時 2024-06-25 22:42:25
合計ジャッジ時間 4,066 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 44 ms
55,424 KB
testcase_01 AC 54 ms
65,280 KB
testcase_02 AC 69 ms
72,064 KB
testcase_03 AC 46 ms
55,936 KB
testcase_04 AC 46 ms
55,808 KB
testcase_05 AC 45 ms
55,808 KB
testcase_06 AC 85 ms
77,192 KB
testcase_07 AC 45 ms
55,808 KB
testcase_08 AC 45 ms
55,296 KB
testcase_09 AC 44 ms
55,552 KB
testcase_10 AC 66 ms
70,912 KB
testcase_11 AC 44 ms
55,808 KB
testcase_12 AC 45 ms
55,808 KB
testcase_13 AC 74 ms
74,272 KB
testcase_14 AC 46 ms
55,296 KB
testcase_15 AC 44 ms
55,680 KB
testcase_16 AC 54 ms
65,152 KB
testcase_17 AC 93 ms
77,824 KB
testcase_18 AC 67 ms
70,656 KB
testcase_19 AC 46 ms
55,808 KB
testcase_20 AC 67 ms
70,272 KB
testcase_21 AC 44 ms
56,064 KB
testcase_22 AC 44 ms
55,808 KB
testcase_23 AC 72 ms
74,752 KB
testcase_24 AC 45 ms
55,936 KB
testcase_25 AC 68 ms
71,680 KB
testcase_26 AC 44 ms
55,680 KB
testcase_27 AC 69 ms
71,680 KB
testcase_28 AC 82 ms
77,516 KB
testcase_29 AC 45 ms
56,064 KB
testcase_30 AC 45 ms
55,552 KB
testcase_31 AC 61 ms
68,608 KB
testcase_32 AC 61 ms
68,096 KB
testcase_33 AC 46 ms
56,064 KB
testcase_34 AC 47 ms
55,808 KB
testcase_35 AC 55 ms
64,896 KB
testcase_36 AC 45 ms
55,936 KB
testcase_37 AC 70 ms
72,320 KB
testcase_38 AC 45 ms
55,296 KB
testcase_39 AC 80 ms
77,268 KB
testcase_40 AC 46 ms
55,808 KB
testcase_41 AC 47 ms
55,680 KB
testcase_42 AC 49 ms
55,552 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import *
from itertools import *
from functools import *
from heapq import *
import sys,math
input = sys.stdin.readline

N = int(input())
M = [int(input()) for _ in range(N)]
mod = 1000

INF = (1<<60)
dp = [INF]*(1<<N)
S = [0]*(1<<N)

for i in range(1<<N):
    
    for j in range(N):
        if (i>>j)&1:
            S[i] += M[j]

dp[0]=0
for i in range(1<<N):
    
    target = []
    for j in range(N):
        if (i>>j)&1:
            continue
        target.append(j)
        
    for t in target:
        
        dp[i|(1<<t)] = min(dp[i|(1<<t)],dp[i] + max(0,M[t] - S[i]%1000))
print(dp[-1])
0