結果

問題 No.115 遠足のおやつ
ユーザー t8m8⛄️t8m8⛄️
提出日時 2015-06-07 15:56:22
言語 Java21
(openjdk 21)
結果
AC  
実行時間 293 ms / 5,000 ms
コード長 1,623 bytes
コンパイル時間 3,277 ms
コンパイル使用メモリ 84,248 KB
実行使用メモリ 69,752 KB
最終ジャッジ日時 2024-06-10 23:40:53
合計ジャッジ時間 12,895 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 119 ms
41,984 KB
testcase_01 AC 130 ms
43,468 KB
testcase_02 AC 161 ms
44,908 KB
testcase_03 AC 132 ms
42,268 KB
testcase_04 AC 265 ms
69,436 KB
testcase_05 AC 149 ms
43,724 KB
testcase_06 AC 128 ms
43,116 KB
testcase_07 AC 166 ms
48,516 KB
testcase_08 AC 147 ms
43,932 KB
testcase_09 AC 165 ms
45,320 KB
testcase_10 AC 157 ms
48,464 KB
testcase_11 AC 139 ms
43,372 KB
testcase_12 AC 152 ms
48,388 KB
testcase_13 AC 140 ms
43,272 KB
testcase_14 AC 184 ms
49,128 KB
testcase_15 AC 235 ms
58,344 KB
testcase_16 AC 293 ms
69,752 KB
testcase_17 AC 282 ms
59,052 KB
testcase_18 AC 153 ms
52,848 KB
testcase_19 AC 226 ms
57,612 KB
testcase_20 AC 164 ms
48,848 KB
testcase_21 AC 170 ms
53,288 KB
testcase_22 AC 220 ms
54,356 KB
testcase_23 AC 155 ms
44,412 KB
testcase_24 AC 223 ms
54,364 KB
testcase_25 AC 287 ms
60,316 KB
testcase_26 AC 194 ms
49,440 KB
testcase_27 AC 224 ms
53,292 KB
testcase_28 AC 199 ms
49,144 KB
testcase_29 AC 242 ms
57,572 KB
testcase_30 AC 220 ms
54,252 KB
testcase_31 AC 227 ms
53,464 KB
testcase_32 AC 246 ms
60,792 KB
testcase_33 AC 201 ms
53,540 KB
testcase_34 AC 273 ms
69,424 KB
testcase_35 AC 251 ms
54,120 KB
testcase_36 AC 221 ms
54,272 KB
testcase_37 AC 275 ms
69,516 KB
testcase_38 AC 262 ms
69,332 KB
testcase_39 AC 266 ms
69,448 KB
testcase_40 AC 146 ms
42,716 KB
testcase_41 AC 140 ms
43,292 KB
testcase_42 AC 143 ms
43,308 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;
import java.io.*;
import static java.util.Arrays.*;
import static java.lang.Math.*;

public class No0115 {
    
    static final Scanner in = new Scanner(System.in);
    static final PrintWriter out = new PrintWriter(System.out,false);

    static void solve() {
        int n = in.nextInt();
        int d = in.nextInt();
        int K = in.nextInt();

        String[][][] dp = new String[n+1][2000][K+2];
        dp[0][0][0] = "";

        for (int i=0; i<n; i++) {
        	for (int j=0; j<=d; j++) {
        		for (int k=0; k<=K; k++) {
        			if (dp[i][j][k] == null) continue;
        			dp[i+1][i+j+1][k+1] = 
        				(dp[i+1][i+j+1][k+1] == null || dp[i+1][i+j+1][k+1].compareTo(dp[i][j][k]+(char)(i+1)) > 0)
        				? (dp[i][j][k]+(char)(i+1)) : dp[i+1][i+j+1][k+1];
        			dp[i+1][j][k] = (dp[i+1][j][k] == null || dp[i+1][j][k].compareTo(dp[i][j][k]) > 0)
        				? dp[i][j][k] : dp[i+1][j][k];
        		}
        	}
        }
        
        if (dp[n][d][K] == null) {
        	out.println("-1");
        } else {
        	for(int i=0; i<dp[n][d][K].length()-1; i++) {
        		out.print((int)dp[n][d][K].charAt(i)+" ");
        	}
        	out.println((int)dp[n][d][K].charAt(dp[n][d][K].length()-1));
        }
    }

    public static void main(String[] args) {
        long start = System.currentTimeMillis();

        solve();
        out.flush();

        long end = System.currentTimeMillis();
        //trace(end-start + "ms");
        in.close();
        out.close();
    }

    static void trace(Object... o) { System.out.println(Arrays.deepToString(o));}
}
0