結果

問題 No.115 遠足のおやつ
ユーザー H20H20
提出日時 2020-12-04 15:02:18
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 469 bytes
コンパイル時間 326 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 61,696 KB
最終ジャッジ日時 2024-09-15 01:22:43
合計ジャッジ時間 4,107 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
51,968 KB
testcase_01 AC 48 ms
58,496 KB
testcase_02 WA -
testcase_03 AC 45 ms
57,600 KB
testcase_04 WA -
testcase_05 AC 41 ms
51,712 KB
testcase_06 AC 41 ms
51,968 KB
testcase_07 AC 48 ms
59,392 KB
testcase_08 AC 41 ms
51,712 KB
testcase_09 AC 41 ms
52,096 KB
testcase_10 AC 40 ms
52,352 KB
testcase_11 AC 41 ms
51,456 KB
testcase_12 AC 41 ms
51,584 KB
testcase_13 AC 41 ms
51,968 KB
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 AC 53 ms
61,184 KB
testcase_18 AC 45 ms
57,728 KB
testcase_19 AC 52 ms
60,672 KB
testcase_20 AC 50 ms
59,648 KB
testcase_21 AC 41 ms
52,096 KB
testcase_22 WA -
testcase_23 AC 52 ms
59,904 KB
testcase_24 WA -
testcase_25 AC 53 ms
60,672 KB
testcase_26 AC 51 ms
60,672 KB
testcase_27 WA -
testcase_28 WA -
testcase_29 AC 52 ms
60,800 KB
testcase_30 WA -
testcase_31 AC 51 ms
59,648 KB
testcase_32 WA -
testcase_33 AC 50 ms
59,392 KB
testcase_34 WA -
testcase_35 WA -
testcase_36 WA -
testcase_37 WA -
testcase_38 WA -
testcase_39 AC 60 ms
61,696 KB
testcase_40 AC 41 ms
51,968 KB
testcase_41 AC 40 ms
51,840 KB
testcase_42 AC 40 ms
51,840 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N,D,K = map(int,input().split())
DP = [[0] * (D+1) for i in range(K)]
for n in range(1,N+1):
    for k in reversed(range(K-1)):
        for i in range(D+1):
            if  i+n <= D and DP[k][i]!=0:
                DP[k+1][i+n]=n
    if n <= D:
        DP[0][n] = n
if DP[K-1][D]==0:
    print(-1)
    exit()
else:
    ANS = []
    temp = 0
    for i in reversed(range(K)):
        ANS.append(DP[i][D-temp])
        temp += DP[i][D-temp]

    ANS.sort()
    print(*ANS)
0