結果

問題 No.115 遠足のおやつ
ユーザー chiho_miyakochiho_miyako
提出日時 2015-04-16 19:10:54
言語 Java21
(openjdk 21)
結果
AC  
実行時間 318 ms / 5,000 ms
コード長 1,404 bytes
コンパイル時間 3,021 ms
コンパイル使用メモリ 81,260 KB
実行使用メモリ 102,888 KB
最終ジャッジ日時 2024-06-10 23:40:07
合計ジャッジ時間 12,476 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 122 ms
41,340 KB
testcase_01 AC 119 ms
41,792 KB
testcase_02 AC 120 ms
40,632 KB
testcase_03 AC 103 ms
40,052 KB
testcase_04 AC 258 ms
79,692 KB
testcase_05 AC 118 ms
40,708 KB
testcase_06 AC 117 ms
41,536 KB
testcase_07 AC 145 ms
43,268 KB
testcase_08 AC 116 ms
41,956 KB
testcase_09 AC 136 ms
42,584 KB
testcase_10 AC 153 ms
44,352 KB
testcase_11 AC 124 ms
41,724 KB
testcase_12 AC 180 ms
53,688 KB
testcase_13 AC 112 ms
41,348 KB
testcase_14 AC 154 ms
42,548 KB
testcase_15 AC 214 ms
59,464 KB
testcase_16 AC 318 ms
102,300 KB
testcase_17 AC 275 ms
76,984 KB
testcase_18 AC 220 ms
60,140 KB
testcase_19 AC 233 ms
68,164 KB
testcase_20 AC 152 ms
42,956 KB
testcase_21 AC 287 ms
102,204 KB
testcase_22 AC 213 ms
53,576 KB
testcase_23 AC 120 ms
42,004 KB
testcase_24 AC 176 ms
45,432 KB
testcase_25 AC 307 ms
102,388 KB
testcase_26 AC 157 ms
45,968 KB
testcase_27 AC 162 ms
46,060 KB
testcase_28 AC 149 ms
43,596 KB
testcase_29 AC 273 ms
77,052 KB
testcase_30 AC 173 ms
49,208 KB
testcase_31 AC 277 ms
77,012 KB
testcase_32 AC 238 ms
77,344 KB
testcase_33 AC 282 ms
102,468 KB
testcase_34 AC 273 ms
76,964 KB
testcase_35 AC 229 ms
68,460 KB
testcase_36 AC 167 ms
44,364 KB
testcase_37 AC 315 ms
102,888 KB
testcase_38 AC 315 ms
102,604 KB
testcase_39 AC 299 ms
102,408 KB
testcase_40 AC 107 ms
41,240 KB
testcase_41 AC 104 ms
40,360 KB
testcase_42 AC 133 ms
41,952 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