結果

問題 No.115 遠足のおやつ
ユーザー TawaraTawara
提出日時 2015-09-16 01:21:25
言語 Python2
(2.7.18)
結果
WA  
実行時間 -
コード長 401 bytes
コンパイル時間 39 ms
コンパイル使用メモリ 6,784 KB
実行使用メモリ 6,400 KB
最終ジャッジ日時 2024-07-19 06:38:57
合計ジャッジ時間 4,028 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 10 ms
6,144 KB
testcase_01 AC 10 ms
6,144 KB
testcase_02 WA -
testcase_03 AC 9 ms
6,016 KB
testcase_04 WA -
testcase_05 AC 11 ms
6,016 KB
testcase_06 AC 10 ms
6,144 KB
testcase_07 AC 12 ms
5,888 KB
testcase_08 AC 9 ms
6,016 KB
testcase_09 AC 9 ms
6,016 KB
testcase_10 AC 8 ms
6,016 KB
testcase_11 AC 9 ms
6,016 KB
testcase_12 AC 9 ms
6,016 KB
testcase_13 AC 9 ms
6,144 KB
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 AC 74 ms
6,272 KB
testcase_18 AC 10 ms
6,144 KB
testcase_19 AC 27 ms
6,144 KB
testcase_20 AC 20 ms
6,016 KB
testcase_21 AC 10 ms
6,144 KB
testcase_22 WA -
testcase_23 AC 13 ms
6,016 KB
testcase_24 WA -
testcase_25 AC 87 ms
6,016 KB
testcase_26 AC 30 ms
6,016 KB
testcase_27 WA -
testcase_28 WA -
testcase_29 AC 41 ms
6,272 KB
testcase_30 WA -
testcase_31 AC 28 ms
6,272 KB
testcase_32 WA -
testcase_33 AC 17 ms
6,144 KB
testcase_34 WA -
testcase_35 WA -
testcase_36 WA -
testcase_37 WA -
testcase_38 WA -
testcase_39 AC 375 ms
6,400 KB
testcase_40 AC 9 ms
6,144 KB
testcase_41 AC 9 ms
6,144 KB
testcase_42 AC 9 ms
6,016 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,dp[D]))
0