結果

問題 No.115 遠足のおやつ
ユーザー lloyzlloyz
提出日時 2023-07-02 16:02:48
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 67 ms / 5,000 ms
コード長 625 bytes
コンパイル時間 290 ms
コンパイル使用メモリ 81,980 KB
実行使用メモリ 73,200 KB
最終ジャッジ日時 2024-07-16 11:45:27
合計ジャッジ時間 3,477 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,812 KB
testcase_01 AC 44 ms
59,844 KB
testcase_02 AC 44 ms
61,708 KB
testcase_03 AC 38 ms
58,360 KB
testcase_04 AC 57 ms
68,096 KB
testcase_05 AC 36 ms
52,808 KB
testcase_06 AC 36 ms
53,940 KB
testcase_07 AC 46 ms
62,688 KB
testcase_08 AC 41 ms
59,432 KB
testcase_09 AC 43 ms
61,280 KB
testcase_10 AC 42 ms
61,640 KB
testcase_11 AC 40 ms
59,368 KB
testcase_12 AC 42 ms
60,616 KB
testcase_13 AC 37 ms
52,980 KB
testcase_14 AC 48 ms
62,592 KB
testcase_15 AC 51 ms
66,512 KB
testcase_16 AC 57 ms
67,980 KB
testcase_17 AC 53 ms
65,964 KB
testcase_18 AC 42 ms
61,480 KB
testcase_19 AC 48 ms
64,912 KB
testcase_20 AC 47 ms
62,420 KB
testcase_21 AC 42 ms
60,540 KB
testcase_22 AC 54 ms
66,116 KB
testcase_23 AC 47 ms
61,936 KB
testcase_24 AC 50 ms
64,268 KB
testcase_25 AC 53 ms
67,644 KB
testcase_26 AC 47 ms
63,716 KB
testcase_27 AC 49 ms
65,208 KB
testcase_28 AC 47 ms
63,096 KB
testcase_29 AC 50 ms
64,796 KB
testcase_30 AC 51 ms
65,960 KB
testcase_31 AC 50 ms
64,412 KB
testcase_32 AC 57 ms
67,696 KB
testcase_33 AC 47 ms
63,516 KB
testcase_34 AC 56 ms
67,764 KB
testcase_35 AC 51 ms
65,796 KB
testcase_36 AC 49 ms
65,296 KB
testcase_37 AC 54 ms
66,928 KB
testcase_38 AC 65 ms
73,092 KB
testcase_39 AC 67 ms
73,200 KB
testcase_40 AC 35 ms
52,528 KB
testcase_41 AC 34 ms
53,576 KB
testcase_42 AC 35 ms
52,808 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n, d, k = map(int, input().split())

DP = [[[False for _ in range(d + 1)] for _ in range(k + 1)] for _ in range(n + 1)]
DP[0][0][0] = True
for i in range(n):
    for x in range(k + 1):
        for j in range(d + 1):
            if DP[i][x][j]:
                DP[i + 1][x][j] = True
                if x + 1 <= k and i + j + 1 <= d:
                    DP[i + 1][x + 1][i + j + 1] = True

if not DP[n][k][d]:
    print(-1)
    exit()

ANS = []
cc = d
num = k - 1
for i in range(n, 0, -1):
    if cc - i < 0:
        continue
    if DP[i][num][cc - i]:
        ANS.append(i)
        cc -= i
        num -= 1
print(*ANS[::-1])
0