結果

問題 No.115 遠足のおやつ
ユーザー bellangeldindonbellangeldindon
提出日時 2019-05-15 14:42:56
言語 Python2
(2.7.18)
結果
AC  
実行時間 761 ms / 5,000 ms
コード長 839 bytes
コンパイル時間 154 ms
コンパイル使用メモリ 7,040 KB
実行使用メモリ 9,344 KB
最終ジャッジ日時 2024-06-10 23:57:01
合計ジャッジ時間 5,914 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 10 ms
6,144 KB
testcase_01 AC 19 ms
7,296 KB
testcase_02 AC 17 ms
6,784 KB
testcase_03 AC 12 ms
6,944 KB
testcase_04 AC 448 ms
7,424 KB
testcase_05 AC 9 ms
6,144 KB
testcase_06 AC 9 ms
6,400 KB
testcase_07 AC 12 ms
6,400 KB
testcase_08 AC 16 ms
6,656 KB
testcase_09 AC 24 ms
6,656 KB
testcase_10 AC 26 ms
6,784 KB
testcase_11 AC 10 ms
6,272 KB
testcase_12 AC 14 ms
6,272 KB
testcase_13 AC 9 ms
6,400 KB
testcase_14 AC 21 ms
6,400 KB
testcase_15 AC 238 ms
7,040 KB
testcase_16 AC 387 ms
7,296 KB
testcase_17 AC 101 ms
6,784 KB
testcase_18 AC 10 ms
6,400 KB
testcase_19 AC 17 ms
6,400 KB
testcase_20 AC 19 ms
6,528 KB
testcase_21 AC 12 ms
6,400 KB
testcase_22 AC 131 ms
7,040 KB
testcase_23 AC 19 ms
6,784 KB
testcase_24 AC 115 ms
7,040 KB
testcase_25 AC 91 ms
6,784 KB
testcase_26 AC 35 ms
6,400 KB
testcase_27 AC 62 ms
6,656 KB
testcase_28 AC 36 ms
6,784 KB
testcase_29 AC 54 ms
6,656 KB
testcase_30 AC 116 ms
7,040 KB
testcase_31 AC 38 ms
6,528 KB
testcase_32 AC 277 ms
7,168 KB
testcase_33 AC 16 ms
6,400 KB
testcase_34 AC 434 ms
7,424 KB
testcase_35 AC 86 ms
6,784 KB
testcase_36 AC 101 ms
7,296 KB
testcase_37 AC 282 ms
7,168 KB
testcase_38 AC 743 ms
9,088 KB
testcase_39 AC 761 ms
9,344 KB
testcase_40 AC 9 ms
6,144 KB
testcase_41 AC 9 ms
6,272 KB
testcase_42 AC 9 ms
6,400 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def smaller(lst1, lst2):
	for i in range(0, len(lst1)):
		if lst1[i] < lst2[i]: return lst1
		if lst1[i] > lst2[i]: return lst2
	return lst1

N, D, K = map(int, raw_input().split())
dp = []
for i in range(0, D+1):
	lst = []
	for j in range(0, K+1):
		lst.append([False, []])
	dp.append(lst)
dp[D][K] = [True, []]
for i in range(1, N+1):
	for j in range(1, D+1):
		for k in range(1, K+1):
			if dp[j][k][0] and j-i >= 0:
				newlst = []
				for p in range(0, len(dp[j][k][1])):
					newlst.append(dp[j][k][1][p])
				newlst.append(i)
				if not dp[j-i][k-1][0]: dp[j-i][k-1] = [True, newlst]
				else:
					if smaller(newlst, dp[j-i][k-1][1]) == newlst:
						dp[j-i][k-1] = [True, newlst]
if not dp[0][0][0]: print -1
else:
	ans = str(dp[0][0][1][0])
	for i in range(1, len(dp[0][0][1])):
		ans = ans + ' ' + str(dp[0][0][1][i])
	print ans
0