結果

問題 No.115 遠足のおやつ
ユーザー convexineqconvexineq
提出日時 2020-12-09 03:41:33
言語 PyPy3
(7.3.15)
結果
RE  
実行時間 -
コード長 588 bytes
コンパイル時間 273 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 86,144 KB
最終ジャッジ日時 2024-09-19 00:56:59
合計ジャッジ時間 5,076 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 RE -
testcase_01 RE -
testcase_02 AC 48 ms
62,848 KB
testcase_03 RE -
testcase_04 AC 62 ms
78,864 KB
testcase_05 AC 34 ms
51,840 KB
testcase_06 RE -
testcase_07 AC 33 ms
52,096 KB
testcase_08 RE -
testcase_09 RE -
testcase_10 RE -
testcase_11 RE -
testcase_12 RE -
testcase_13 RE -
testcase_14 AC 44 ms
60,032 KB
testcase_15 AC 58 ms
72,192 KB
testcase_16 AC 49 ms
66,560 KB
testcase_17 AC 37 ms
53,120 KB
testcase_18 RE -
testcase_19 AC 37 ms
52,224 KB
testcase_20 AC 36 ms
52,352 KB
testcase_21 AC 33 ms
52,608 KB
testcase_22 AC 67 ms
77,220 KB
testcase_23 RE -
testcase_24 AC 97 ms
78,080 KB
testcase_25 AC 41 ms
58,624 KB
testcase_26 AC 38 ms
52,224 KB
testcase_27 AC 46 ms
60,800 KB
testcase_28 AC 48 ms
62,208 KB
testcase_29 AC 39 ms
58,624 KB
testcase_30 AC 78 ms
77,056 KB
testcase_31 AC 40 ms
58,496 KB
testcase_32 AC 52 ms
72,576 KB
testcase_33 AC 37 ms
52,096 KB
testcase_34 AC 65 ms
78,336 KB
testcase_35 AC 46 ms
62,976 KB
testcase_36 AC 104 ms
77,932 KB
testcase_37 AC 49 ms
65,536 KB
testcase_38 AC 238 ms
85,376 KB
testcase_39 RE -
testcase_40 RE -
testcase_41 RE -
testcase_42 AC 34 ms
52,224 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)
print(*res[::-1] if res else -1)
0