結果

問題 No.286 Modulo Discount Store
ユーザー tookunn_1213tookunn_1213
提出日時 2016-09-28 01:22:56
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 345 ms / 2,000 ms
コード長 389 bytes
コンパイル時間 91 ms
コンパイル使用メモリ 12,800 KB
実行使用メモリ 23,532 KB
最終ジャッジ日時 2024-11-21 07:29:23
合計ジャッジ時間 5,060 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 60 ms
22,204 KB
testcase_01 AC 61 ms
22,136 KB
testcase_02 AC 120 ms
22,480 KB
testcase_03 AC 59 ms
22,232 KB
testcase_04 AC 60 ms
22,396 KB
testcase_05 AC 58 ms
22,200 KB
testcase_06 AC 193 ms
22,984 KB
testcase_07 AC 60 ms
22,168 KB
testcase_08 AC 58 ms
22,228 KB
testcase_09 AC 58 ms
22,232 KB
testcase_10 AC 87 ms
22,292 KB
testcase_11 AC 59 ms
22,156 KB
testcase_12 AC 58 ms
22,224 KB
testcase_13 AC 119 ms
22,544 KB
testcase_14 AC 58 ms
22,160 KB
testcase_15 AC 59 ms
22,308 KB
testcase_16 AC 59 ms
22,464 KB
testcase_17 AC 345 ms
23,532 KB
testcase_18 AC 88 ms
22,484 KB
testcase_19 AC 59 ms
22,444 KB
testcase_20 AC 65 ms
22,216 KB
testcase_21 AC 59 ms
22,216 KB
testcase_22 AC 58 ms
22,324 KB
testcase_23 AC 119 ms
22,640 KB
testcase_24 AC 57 ms
22,444 KB
testcase_25 AC 73 ms
22,440 KB
testcase_26 AC 59 ms
22,212 KB
testcase_27 AC 72 ms
22,228 KB
testcase_28 AC 192 ms
22,876 KB
testcase_29 AC 57 ms
22,480 KB
testcase_30 AC 58 ms
22,200 KB
testcase_31 AC 62 ms
22,332 KB
testcase_32 AC 63 ms
22,136 KB
testcase_33 AC 59 ms
22,336 KB
testcase_34 AC 60 ms
22,272 KB
testcase_35 AC 61 ms
22,412 KB
testcase_36 AC 61 ms
22,136 KB
testcase_37 AC 71 ms
22,288 KB
testcase_38 AC 60 ms
22,156 KB
testcase_39 AC 191 ms
23,096 KB
testcase_40 AC 59 ms
22,448 KB
testcase_41 AC 59 ms
22,132 KB
testcase_42 AC 60 ms
22,168 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
M = [int(input()) for i in range(N)]
dp = [[-1] * (1 << N)] * (15 * 100000 + 1)
def dfs(bit,m):
	if bit == (1 << N) - 1:
		return 0
	if dp[m][bit] != -1:
		return dp[m][bit]
	ret = 10 ** 9 + 7
	for i in range(N):
		if (bit >> i) & 1:
			continue
		ret = min(ret,dfs(bit | (1 << i),m + M[i]) + max(0,M[i] - m % 1000))
	dp[m][bit] = ret
	return ret
res = dfs(0,0)
print(res)
0