結果

問題 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  
実行時間 340 ms / 2,000 ms
コード長 389 bytes
コンパイル時間 85 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 23,760 KB
最終ジャッジ日時 2024-05-01 05:51:57
合計ジャッジ時間 4,710 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 56 ms
22,400 KB
testcase_01 AC 56 ms
22,484 KB
testcase_02 AC 126 ms
22,784 KB
testcase_03 AC 56 ms
22,400 KB
testcase_04 AC 56 ms
22,400 KB
testcase_05 AC 57 ms
22,400 KB
testcase_06 AC 190 ms
23,040 KB
testcase_07 AC 56 ms
22,424 KB
testcase_08 AC 58 ms
22,400 KB
testcase_09 AC 57 ms
22,440 KB
testcase_10 AC 85 ms
22,528 KB
testcase_11 AC 58 ms
22,400 KB
testcase_12 AC 58 ms
22,400 KB
testcase_13 AC 116 ms
22,736 KB
testcase_14 AC 58 ms
22,468 KB
testcase_15 AC 58 ms
22,412 KB
testcase_16 AC 59 ms
22,400 KB
testcase_17 AC 340 ms
23,760 KB
testcase_18 AC 83 ms
22,652 KB
testcase_19 AC 58 ms
22,400 KB
testcase_20 AC 64 ms
22,416 KB
testcase_21 AC 57 ms
22,400 KB
testcase_22 AC 57 ms
22,400 KB
testcase_23 AC 117 ms
22,772 KB
testcase_24 AC 54 ms
22,400 KB
testcase_25 AC 70 ms
22,548 KB
testcase_26 AC 56 ms
22,496 KB
testcase_27 AC 69 ms
22,528 KB
testcase_28 AC 187 ms
23,040 KB
testcase_29 AC 55 ms
22,400 KB
testcase_30 AC 57 ms
22,400 KB
testcase_31 AC 59 ms
22,528 KB
testcase_32 AC 59 ms
22,400 KB
testcase_33 AC 57 ms
22,428 KB
testcase_34 AC 56 ms
22,400 KB
testcase_35 AC 57 ms
22,400 KB
testcase_36 AC 57 ms
22,436 KB
testcase_37 AC 74 ms
22,528 KB
testcase_38 AC 57 ms
22,400 KB
testcase_39 AC 187 ms
23,040 KB
testcase_40 AC 56 ms
22,456 KB
testcase_41 AC 55 ms
22,400 KB
testcase_42 AC 57 ms
22,400 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