結果

問題 No.115 遠足のおやつ
ユーザー TawaraTawara
提出日時 2015-09-16 01:55:41
言語 Python2
(2.7.18)
結果
AC  
実行時間 381 ms / 5,000 ms
コード長 409 bytes
コンパイル時間 259 ms
コンパイル使用メモリ 7,040 KB
実行使用メモリ 6,400 KB
最終ジャッジ日時 2024-06-10 23:41:43
合計ジャッジ時間 4,019 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 10 ms
6,144 KB
testcase_01 AC 10 ms
6,144 KB
testcase_02 AC 15 ms
6,272 KB
testcase_03 AC 10 ms
6,272 KB
testcase_04 AC 230 ms
6,400 KB
testcase_05 AC 10 ms
6,272 KB
testcase_06 AC 9 ms
6,144 KB
testcase_07 AC 12 ms
6,272 KB
testcase_08 AC 10 ms
6,144 KB
testcase_09 AC 9 ms
6,144 KB
testcase_10 AC 9 ms
6,272 KB
testcase_11 AC 9 ms
6,272 KB
testcase_12 AC 9 ms
6,272 KB
testcase_13 AC 9 ms
6,144 KB
testcase_14 AC 17 ms
6,144 KB
testcase_15 AC 130 ms
6,400 KB
testcase_16 AC 200 ms
6,272 KB
testcase_17 AC 75 ms
6,400 KB
testcase_18 AC 10 ms
6,272 KB
testcase_19 AC 24 ms
6,272 KB
testcase_20 AC 18 ms
6,144 KB
testcase_21 AC 9 ms
6,144 KB
testcase_22 AC 76 ms
6,400 KB
testcase_23 AC 12 ms
6,272 KB
testcase_24 AC 68 ms
6,272 KB
testcase_25 AC 83 ms
6,272 KB
testcase_26 AC 28 ms
6,144 KB
testcase_27 AC 41 ms
6,272 KB
testcase_28 AC 27 ms
6,272 KB
testcase_29 AC 43 ms
6,272 KB
testcase_30 AC 71 ms
6,272 KB
testcase_31 AC 28 ms
6,272 KB
testcase_32 AC 149 ms
6,400 KB
testcase_33 AC 17 ms
6,272 KB
testcase_34 AC 219 ms
6,400 KB
testcase_35 AC 54 ms
6,400 KB
testcase_36 AC 58 ms
6,400 KB
testcase_37 AC 153 ms
6,400 KB
testcase_38 AC 378 ms
6,400 KB
testcase_39 AC 381 ms
6,400 KB
testcase_40 AC 10 ms
6,272 KB
testcase_41 AC 10 ms
6,144 KB
testcase_42 AC 10 ms
6,272 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N,D,K = map(int,raw_input().split())
dp = [None]*(D+1+N)
dp[0] = []
for i in xrange(K):
	for j in reversed(xrange(D)):
		if dp[j] == None:
			continue
		for k in xrange(1,N+1):
			if k in dp[j]:
				continue
			tmpv = dp[j] + [k]
			if dp[j+k] is None or not (len(tmpv) <= len(dp[j+k]) and tmpv >= dp[j+k]):
				dp[j+k] = tmpv
print -1 if dp[D] == None or len(dp[D]) != K else " ".join(map(str,sorted(dp[D])))
0