結果

問題 No.115 遠足のおやつ
ユーザー chiho_miyakochiho_miyako
提出日時 2015-04-16 19:02:40
言語 Java21
(openjdk 21)
結果
RE  
実行時間 -
コード長 1,355 bytes
コンパイル時間 2,487 ms
コンパイル使用メモリ 80,512 KB
実行使用メモリ 102,324 KB
最終ジャッジ日時 2024-07-04 14:59:32
合計ジャッジ時間 11,868 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 RE -
testcase_01 RE -
testcase_02 AC 148 ms
41,760 KB
testcase_03 RE -
testcase_04 AC 245 ms
79,372 KB
testcase_05 AC 149 ms
41,804 KB
testcase_06 AC 134 ms
41,284 KB
testcase_07 AC 149 ms
42,440 KB
testcase_08 RE -
testcase_09 RE -
testcase_10 AC 160 ms
43,844 KB
testcase_11 RE -
testcase_12 AC 169 ms
52,720 KB
testcase_13 AC 135 ms
40,952 KB
testcase_14 AC 150 ms
41,752 KB
testcase_15 AC 198 ms
59,144 KB
testcase_16 AC 245 ms
84,296 KB
testcase_17 AC 231 ms
76,820 KB
testcase_18 AC 150 ms
58,316 KB
testcase_19 AC 192 ms
68,040 KB
testcase_20 AC 152 ms
41,896 KB
testcase_21 AC 246 ms
101,912 KB
testcase_22 AC 191 ms
52,948 KB
testcase_23 RE -
testcase_24 AC 172 ms
45,252 KB
testcase_25 AC 266 ms
101,764 KB
testcase_26 AC 153 ms
44,112 KB
testcase_27 AC 176 ms
45,924 KB
testcase_28 AC 156 ms
42,488 KB
testcase_29 AC 221 ms
76,644 KB
testcase_30 AC 179 ms
48,992 KB
testcase_31 AC 239 ms
76,824 KB
testcase_32 AC 218 ms
76,672 KB
testcase_33 AC 241 ms
101,728 KB
testcase_34 AC 243 ms
76,960 KB
testcase_35 AC 203 ms
68,224 KB
testcase_36 AC 175 ms
44,072 KB
testcase_37 AC 256 ms
102,324 KB
testcase_38 AC 266 ms
102,232 KB
testcase_39 AC 249 ms
102,124 KB
testcase_40 RE -
testcase_41 AC 134 ms
41,356 KB
testcase_42 RE -
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
   public static void main(String[] args) throws Exception {
       Scanner koko = new Scanner(System.in);
       int n = koko.nextInt();
       int d = koko.nextInt();
       int k = koko.nextInt();
       boolean[][][] price = new boolean[n+1][n+1][n*(n+1)/2];
       price[0][0][0]=true;
       for(int x=0; x<n; x++){
           for(int y=0; y<=x; y++){
               for(int z=0; z<d+1; z++){
                   if(price[x][y][z]){
                       price[x+1][y][z]=true;
                       price[x+1][y+1][z+x+1]=true;
                   }
               }
           }
       }
       boolean judge = false;
       for(int x=n; x>0; x--){
           if(price[x][k][d]){
               judge=true;
               int[] a = new int[k];
               int b =0;
               while(x>0){
                   if(x<=d&&price[x-1][k-1][d-x]){
                       a[b++]=x;
                       k--;
                       d=d-x;
                       x--;
                   }else{
                       x--;
                   }
               }
               Arrays.sort(a);
               for(int i=0; i<b; i++){
                   System.out.print(a[i]+" ");
               }
               break;
           }
       }
       if(!judge){
           System.out.println(-1);
       }
    }
}
0