結果

問題 No.115 遠足のおやつ
ユーザー brthyyjpbrthyyjp
提出日時 2021-12-10 20:27:57
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 165 ms / 5,000 ms
コード長 574 bytes
コンパイル時間 158 ms
コンパイル使用メモリ 82,256 KB
実行使用メモリ 79,436 KB
最終ジャッジ日時 2024-07-18 14:29:59
合計ジャッジ時間 4,526 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
52,224 KB
testcase_01 AC 49 ms
61,056 KB
testcase_02 AC 60 ms
66,944 KB
testcase_03 AC 44 ms
58,112 KB
testcase_04 AC 126 ms
77,312 KB
testcase_05 AC 39 ms
52,096 KB
testcase_06 AC 39 ms
52,480 KB
testcase_07 AC 54 ms
63,744 KB
testcase_08 AC 44 ms
59,008 KB
testcase_09 AC 47 ms
60,800 KB
testcase_10 AC 47 ms
60,800 KB
testcase_11 AC 42 ms
57,728 KB
testcase_12 AC 46 ms
59,392 KB
testcase_13 AC 39 ms
51,840 KB
testcase_14 AC 65 ms
69,376 KB
testcase_15 AC 103 ms
76,632 KB
testcase_16 AC 120 ms
77,184 KB
testcase_17 AC 85 ms
76,160 KB
testcase_18 AC 43 ms
59,008 KB
testcase_19 AC 62 ms
66,304 KB
testcase_20 AC 69 ms
68,352 KB
testcase_21 AC 49 ms
59,264 KB
testcase_22 AC 90 ms
76,160 KB
testcase_23 AC 60 ms
66,176 KB
testcase_24 AC 87 ms
76,160 KB
testcase_25 AC 85 ms
76,160 KB
testcase_26 AC 69 ms
72,448 KB
testcase_27 AC 80 ms
76,160 KB
testcase_28 AC 69 ms
72,960 KB
testcase_29 AC 65 ms
72,960 KB
testcase_30 AC 88 ms
76,288 KB
testcase_31 AC 62 ms
69,504 KB
testcase_32 AC 107 ms
76,800 KB
testcase_33 AC 56 ms
65,408 KB
testcase_34 AC 122 ms
77,524 KB
testcase_35 AC 76 ms
75,904 KB
testcase_36 AC 81 ms
76,132 KB
testcase_37 AC 105 ms
76,544 KB
testcase_38 AC 160 ms
79,436 KB
testcase_39 AC 165 ms
79,232 KB
testcase_40 AC 42 ms
52,096 KB
testcase_41 AC 41 ms
51,968 KB
testcase_42 AC 39 ms
52,096 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n, d, k = map(int, input().split())
dp = [[-1]*(d+1) for i in range(k+1)]
dp[0][0] = tuple([])
for i in range(1, n+1):
    for j in reversed(range(k+1)):
        for l in reversed(range(d+1)):
            if dp[j][l] == -1:
                continue
            if j+1 <= k and l+i <= d:
                nt = list(dp[j][l])+[i]
                nt = tuple(nt)
                if dp[j+1][l+i] != -1:
                    dp[j+1][l+i] = min(dp[j+1][l+i], nt)
                else:
                    dp[j+1][l+i] = nt
if dp[k][d] != -1:
    print(*dp[k][d])
else:
    print(-1)
0