結果

問題 No.115 遠足のおやつ
ユーザー tookunn_1213tookunn_1213
提出日時 2017-09-24 20:44:46
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 1,163 ms / 5,000 ms
コード長 500 bytes
コンパイル時間 374 ms
コンパイル使用メモリ 12,800 KB
実行使用メモリ 20,352 KB
最終ジャッジ日時 2024-06-10 23:50:40
合計ジャッジ時間 5,284 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 24 ms
10,752 KB
testcase_01 AC 28 ms
11,136 KB
testcase_02 AC 27 ms
10,880 KB
testcase_03 AC 25 ms
10,752 KB
testcase_04 AC 95 ms
14,080 KB
testcase_05 AC 25 ms
10,752 KB
testcase_06 AC 26 ms
10,880 KB
testcase_07 AC 26 ms
11,008 KB
testcase_08 AC 32 ms
11,008 KB
testcase_09 AC 30 ms
11,264 KB
testcase_10 AC 31 ms
11,392 KB
testcase_11 AC 26 ms
10,752 KB
testcase_12 AC 28 ms
11,136 KB
testcase_13 AC 25 ms
10,752 KB
testcase_14 AC 26 ms
10,880 KB
testcase_15 AC 60 ms
12,672 KB
testcase_16 AC 56 ms
13,312 KB
testcase_17 AC 29 ms
11,648 KB
testcase_18 AC 25 ms
10,752 KB
testcase_19 AC 26 ms
11,136 KB
testcase_20 AC 26 ms
10,880 KB
testcase_21 AC 25 ms
10,880 KB
testcase_22 AC 76 ms
12,288 KB
testcase_23 AC 29 ms
11,136 KB
testcase_24 AC 76 ms
12,032 KB
testcase_25 AC 31 ms
11,776 KB
testcase_26 AC 28 ms
11,008 KB
testcase_27 AC 31 ms
11,392 KB
testcase_28 AC 29 ms
11,136 KB
testcase_29 AC 28 ms
11,264 KB
testcase_30 AC 77 ms
12,288 KB
testcase_31 AC 29 ms
11,264 KB
testcase_32 AC 70 ms
12,800 KB
testcase_33 AC 26 ms
10,880 KB
testcase_34 AC 116 ms
13,952 KB
testcase_35 AC 41 ms
11,648 KB
testcase_36 AC 71 ms
12,032 KB
testcase_37 AC 57 ms
13,056 KB
testcase_38 AC 1,143 ms
19,328 KB
testcase_39 AC 1,163 ms
20,352 KB
testcase_40 AC 27 ms
10,752 KB
testcase_41 AC 24 ms
10,752 KB
testcase_42 AC 26 ms
10,752 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N,D,K = map(int,input().split())

ans = [-1 for i in range(K)]
dp = [[[-1 for k in range(D+1)]for j in range(K+1)]for i in range(N+1)]

def dfs(n,k,d):
	if k == K:
		if d == D:
			return True
		else:
			return False
	if n >= N:
		return False
	if dp[n][k][d] != -1:
		return dp[n][k][d]
	for i in range(n+1,N+1):
		ans[k] = i
		if d+i <= D and dfs(i,k+1,d+i):
			return True
		ans[k] = -1
	dp[n][k][d] = False
	return False
if not dfs(0,0,0):
	print(-1)
else:
	print(' '.join([str(i) for i in ans]))
0