結果

問題 No.115 遠足のおやつ
ユーザー neko_the_shadowneko_the_shadow
提出日時 2019-08-05 09:40:10
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 546 bytes
コンパイル時間 156 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 76,800 KB
最終ジャッジ日時 2024-07-18 12:37:32
合計ジャッジ時間 3,495 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 33 ms
51,968 KB
testcase_01 AC 37 ms
57,856 KB
testcase_02 WA -
testcase_03 AC 36 ms
57,472 KB
testcase_04 WA -
testcase_05 AC 34 ms
51,840 KB
testcase_06 AC 33 ms
51,840 KB
testcase_07 AC 40 ms
59,776 KB
testcase_08 AC 33 ms
52,352 KB
testcase_09 AC 35 ms
51,968 KB
testcase_10 AC 36 ms
51,968 KB
testcase_11 AC 35 ms
51,840 KB
testcase_12 AC 34 ms
51,968 KB
testcase_13 AC 38 ms
52,352 KB
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 AC 64 ms
73,216 KB
testcase_18 AC 39 ms
51,968 KB
testcase_19 AC 51 ms
62,208 KB
testcase_20 AC 48 ms
61,696 KB
testcase_21 AC 39 ms
51,968 KB
testcase_22 WA -
testcase_23 AC 43 ms
58,112 KB
testcase_24 WA -
testcase_25 AC 63 ms
71,936 KB
testcase_26 AC 57 ms
65,920 KB
testcase_27 WA -
testcase_28 WA -
testcase_29 AC 57 ms
68,224 KB
testcase_30 WA -
testcase_31 AC 50 ms
62,592 KB
testcase_32 WA -
testcase_33 AC 46 ms
60,416 KB
testcase_34 WA -
testcase_35 WA -
testcase_36 WA -
testcase_37 WA -
testcase_38 WA -
testcase_39 AC 79 ms
76,348 KB
testcase_40 AC 35 ms
51,968 KB
testcase_41 AC 35 ms
51,968 KB
testcase_42 AC 34 ms
51,712 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

dp = [[None] * (d + 1) for _ in range(k + 1)]
dp[0][0] = (0, )
for x in range(k):
    for y in range(d):
        last = dp[x][y]
        if last is None:
            continue

        for z in range(last[-1] + 1, n + 1):
            if y + z <= d:
                if dp[x + 1][y + z] is None:
                    dp[x + 1][y + z] = (*last, z)
                else:
                    dp[x + 1][y + z] = min(dp[x + 1][y + z], (*last, z))

ans = dp[k][d]
if ans is None:
    print(-1)
else:
    print(*ans[1:])
0