結果

問題 No.115 遠足のおやつ
ユーザー convexineqconvexineq
提出日時 2020-12-09 03:43:45
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 235 ms / 5,000 ms
コード長 597 bytes
コンパイル時間 365 ms
コンパイル使用メモリ 82,944 KB
実行使用メモリ 85,760 KB
最終ジャッジ日時 2024-06-11 00:06:19
合計ジャッジ時間 3,455 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 32 ms
52,096 KB
testcase_01 AC 33 ms
52,352 KB
testcase_02 AC 45 ms
63,232 KB
testcase_03 AC 34 ms
51,840 KB
testcase_04 AC 60 ms
78,864 KB
testcase_05 AC 33 ms
52,096 KB
testcase_06 AC 32 ms
52,096 KB
testcase_07 AC 33 ms
52,224 KB
testcase_08 AC 34 ms
52,332 KB
testcase_09 AC 33 ms
52,992 KB
testcase_10 AC 33 ms
52,864 KB
testcase_11 AC 31 ms
52,736 KB
testcase_12 AC 32 ms
52,608 KB
testcase_13 AC 35 ms
52,436 KB
testcase_14 AC 39 ms
59,776 KB
testcase_15 AC 53 ms
72,832 KB
testcase_16 AC 52 ms
66,944 KB
testcase_17 AC 39 ms
53,376 KB
testcase_18 AC 36 ms
52,480 KB
testcase_19 AC 34 ms
52,608 KB
testcase_20 AC 33 ms
52,224 KB
testcase_21 AC 33 ms
52,096 KB
testcase_22 AC 66 ms
77,820 KB
testcase_23 AC 48 ms
65,280 KB
testcase_24 AC 87 ms
78,204 KB
testcase_25 AC 37 ms
59,008 KB
testcase_26 AC 34 ms
52,608 KB
testcase_27 AC 39 ms
61,312 KB
testcase_28 AC 43 ms
62,976 KB
testcase_29 AC 36 ms
59,136 KB
testcase_30 AC 76 ms
77,696 KB
testcase_31 AC 41 ms
59,392 KB
testcase_32 AC 51 ms
72,320 KB
testcase_33 AC 33 ms
52,608 KB
testcase_34 AC 65 ms
78,980 KB
testcase_35 AC 41 ms
63,360 KB
testcase_36 AC 102 ms
78,208 KB
testcase_37 AC 43 ms
66,048 KB
testcase_38 AC 222 ms
85,760 KB
testcase_39 AC 235 ms
85,720 KB
testcase_40 AC 35 ms
52,096 KB
testcase_41 AC 34 ms
52,096 KB
testcase_42 AC 33 ms
52,096 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n,d,k = map(int,input().split())
#ok[p][q][r] pまでみてq個買ってr円使った 状態から条件を満たせるか?
ok = [[[-1]*(d+1) for _ in range(k+1)] for _ in range(n+1)]
res = []
def dfs(p,q,r):
    if q==k:
        return r==d
    v = ok[p][q][r]
    if v != -1: return v
    for i in range(p+1,n+1):
        if q+1 <= k and r+i <= d and dfs(i,q+1,r+i):
            v = 1
            res.append(i)
            #print(p,q,r,i)
            dfs(i,q+1,r+i)
            break
    else:
        v = 0
    ok[p][q][r] = v
    return v
dfs(0,0,0)
if res: print(*res[::-1])
else: print(-1)
0