結果

問題 No.115 遠足のおやつ
ユーザー chiho_miyakochiho_miyako
提出日時 2015-04-16 19:10:54
言語 Java
(openjdk 23)
結果
AC  
実行時間 322 ms / 5,000 ms
コード長 1,404 bytes
コンパイル時間 4,938 ms
コンパイル使用メモリ 83,232 KB
実行使用メモリ 106,680 KB
最終ジャッジ日時 2025-01-03 01:04:37
合計ジャッジ時間 12,447 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 113 ms
54,080 KB
testcase_01 AC 113 ms
54,148 KB
testcase_02 AC 135 ms
54,428 KB
testcase_03 AC 113 ms
54,148 KB
testcase_04 AC 278 ms
91,568 KB
testcase_05 AC 132 ms
54,216 KB
testcase_06 AC 114 ms
54,096 KB
testcase_07 AC 185 ms
56,568 KB
testcase_08 AC 117 ms
54,148 KB
testcase_09 AC 168 ms
58,336 KB
testcase_10 AC 166 ms
58,468 KB
testcase_11 AC 118 ms
54,400 KB
testcase_12 AC 189 ms
65,472 KB
testcase_13 AC 119 ms
54,152 KB
testcase_14 AC 154 ms
56,424 KB
testcase_15 AC 234 ms
72,268 KB
testcase_16 AC 296 ms
99,004 KB
testcase_17 AC 285 ms
91,460 KB
testcase_18 AC 214 ms
72,088 KB
testcase_19 AC 252 ms
79,972 KB
testcase_20 AC 177 ms
56,564 KB
testcase_21 AC 303 ms
98,880 KB
testcase_22 AC 212 ms
65,924 KB
testcase_23 AC 117 ms
54,168 KB
testcase_24 AC 195 ms
58,984 KB
testcase_25 AC 305 ms
102,976 KB
testcase_26 AC 192 ms
58,868 KB
testcase_27 AC 196 ms
59,448 KB
testcase_28 AC 182 ms
58,816 KB
testcase_29 AC 272 ms
91,312 KB
testcase_30 AC 199 ms
61,480 KB
testcase_31 AC 280 ms
91,292 KB
testcase_32 AC 257 ms
83,740 KB
testcase_33 AC 307 ms
106,680 KB
testcase_34 AC 268 ms
87,616 KB
testcase_35 AC 237 ms
76,180 KB
testcase_36 AC 179 ms
58,984 KB
testcase_37 AC 322 ms
106,516 KB
testcase_38 AC 312 ms
106,648 KB
testcase_39 AC 289 ms
106,372 KB
testcase_40 AC 117 ms
54,016 KB
testcase_41 AC 117 ms
54,168 KB
testcase_42 AC 141 ms
54,252 KB
権限があれば一括ダウンロードができます

ソースコード

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();
       int mx = n*(n+1)/2;
       boolean[][][] price = new boolean[n+1][Math.max((n+1),k)+1][Math.max(mx,d)+1];
       price[0][0][0]=true;
       for(int x=0; x<n; x++){
           for(int y=0; y<=x; y++){
               for(int z=0; z<mx; 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