結果

問題 No.115 遠足のおやつ
ユーザー kohaku_kohakukohaku_kohaku
提出日時 2017-01-12 03:03:48
言語 Java
(openjdk 23)
結果
AC  
実行時間 267 ms / 5,000 ms
コード長 913 bytes
コンパイル時間 2,405 ms
コンパイル使用メモリ 80,868 KB
実行使用メモリ 50,544 KB
最終ジャッジ日時 2025-01-03 01:19:56
合計ジャッジ時間 12,255 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 40
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;
 
public class Main {
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        int N = sc.nextInt();
        int D = sc.nextInt();
        int K = sc.nextInt();
        boolean [][] b = new boolean [K+1][D+1];
        String [][] s = new String [K+1][D+1];
        for(int i=0; i<=K; i++){
            for(int j=0; j<=D; j++){
                s[i][j]="";
            }
        }
        b[0][0]=true;
        for(int i=1; i<=N; i++){
            for(int j=D; j>=0; j--){
                for(int k=0; k<K; k++){
                    if(b[k][j]&&i+j<=D){
                        b[k+1][i+j]=true;
                        s[k+1][i+j]=s[k][j]+" "+i;
                    }
                }
            }
        }
        if(b[K][D]){
            System.out.println(s[K][D].substring(1));
        }else{
            System.out.println(-1);
        }
    }
}
0