結果

問題 No.115 遠足のおやつ
ユーザー しらっ亭しらっ亭
提出日時 2015-08-22 14:39:50
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 199 ms / 5,000 ms
コード長 682 bytes
コンパイル時間 76 ms
コンパイル使用メモリ 12,800 KB
実行使用メモリ 47,232 KB
最終ジャッジ日時 2024-06-10 23:41:30
合計ジャッジ時間 3,924 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 27 ms
10,752 KB
testcase_01 AC 27 ms
10,752 KB
testcase_02 AC 27 ms
11,008 KB
testcase_03 AC 25 ms
10,880 KB
testcase_04 AC 157 ms
40,960 KB
testcase_05 AC 28 ms
10,752 KB
testcase_06 AC 27 ms
10,752 KB
testcase_07 AC 27 ms
11,136 KB
testcase_08 AC 25 ms
10,752 KB
testcase_09 AC 26 ms
10,752 KB
testcase_10 AC 25 ms
10,880 KB
testcase_11 AC 24 ms
10,752 KB
testcase_12 AC 26 ms
10,880 KB
testcase_13 AC 25 ms
10,752 KB
testcase_14 AC 29 ms
11,520 KB
testcase_15 AC 99 ms
25,856 KB
testcase_16 AC 165 ms
43,264 KB
testcase_17 AC 127 ms
33,536 KB
testcase_18 AC 67 ms
19,840 KB
testcase_19 AC 71 ms
21,120 KB
testcase_20 AC 33 ms
12,416 KB
testcase_21 AC 26 ms
10,880 KB
testcase_22 AC 52 ms
17,024 KB
testcase_23 AC 28 ms
11,008 KB
testcase_24 AC 47 ms
15,872 KB
testcase_25 AC 197 ms
44,928 KB
testcase_26 AC 44 ms
14,720 KB
testcase_27 AC 43 ms
14,976 KB
testcase_28 AC 33 ms
12,544 KB
testcase_29 AC 52 ms
16,896 KB
testcase_30 AC 48 ms
16,000 KB
testcase_31 AC 36 ms
12,672 KB
testcase_32 AC 113 ms
30,208 KB
testcase_33 AC 39 ms
13,184 KB
testcase_34 AC 151 ms
38,912 KB
testcase_35 AC 49 ms
15,488 KB
testcase_36 AC 43 ms
14,848 KB
testcase_37 AC 124 ms
32,768 KB
testcase_38 AC 196 ms
47,232 KB
testcase_39 AC 199 ms
47,232 KB
testcase_40 AC 25 ms
10,752 KB
testcase_41 AC 24 ms
10,752 KB
testcase_42 AC 24 ms
10,752 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def solve():
    N, D, K = list(map(int, input().split()))
    D -= K

    dp = [[{} for k in range(K + 2)] for i in range(N + 1)]

    # dp[i][k][d] = i 番目までで k 個買って d 円使う組み合わせ
    dp[0][0][0] = []

    for i in range(N):
        for k in range(K+1):
            for d in dp[i][k]:
                if d not in dp[i + 1][k]:
                    dp[i + 1][k][d] = dp[i][k][d]
                if k < K and d + i not in dp[i + 1][k + 1]:
                    dp[i + 1][k + 1][d + i] = dp[i][k][d] + [i]

    if D in dp[N][K]:
        print(' '.join(str(i + 1) for i in dp[N][K][D]))
    else:
        print(-1)


if __name__ == '__main__':
    solve()
0