結果

問題 No.115 遠足のおやつ
ユーザー ぴろずぴろず
提出日時 2014-12-28 23:40:43
言語 Java21
(openjdk 21)
結果
AC  
実行時間 179 ms / 5,000 ms
コード長 1,129 bytes
コンパイル時間 2,900 ms
コンパイル使用メモリ 82,924 KB
実行使用メモリ 47,176 KB
最終ジャッジ日時 2024-06-10 23:37:47
合計ジャッジ時間 8,685 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 111 ms
40,860 KB
testcase_01 AC 101 ms
40,232 KB
testcase_02 AC 106 ms
40,184 KB
testcase_03 AC 109 ms
41,196 KB
testcase_04 AC 178 ms
46,748 KB
testcase_05 AC 111 ms
41,180 KB
testcase_06 AC 107 ms
39,788 KB
testcase_07 AC 120 ms
41,436 KB
testcase_08 AC 118 ms
41,268 KB
testcase_09 AC 108 ms
40,908 KB
testcase_10 AC 114 ms
41,048 KB
testcase_11 AC 111 ms
41,384 KB
testcase_12 AC 96 ms
39,824 KB
testcase_13 AC 101 ms
40,100 KB
testcase_14 AC 106 ms
40,724 KB
testcase_15 AC 147 ms
46,324 KB
testcase_16 AC 175 ms
46,692 KB
testcase_17 AC 159 ms
44,396 KB
testcase_18 AC 112 ms
41,224 KB
testcase_19 AC 121 ms
41,356 KB
testcase_20 AC 121 ms
41,632 KB
testcase_21 AC 101 ms
39,888 KB
testcase_22 AC 161 ms
45,608 KB
testcase_23 AC 112 ms
40,192 KB
testcase_24 AC 164 ms
45,648 KB
testcase_25 AC 156 ms
44,048 KB
testcase_26 AC 118 ms
41,632 KB
testcase_27 AC 167 ms
43,052 KB
testcase_28 AC 120 ms
41,772 KB
testcase_29 AC 135 ms
42,508 KB
testcase_30 AC 162 ms
45,872 KB
testcase_31 AC 140 ms
42,272 KB
testcase_32 AC 154 ms
46,460 KB
testcase_33 AC 117 ms
41,120 KB
testcase_34 AC 179 ms
46,692 KB
testcase_35 AC 156 ms
44,292 KB
testcase_36 AC 151 ms
44,064 KB
testcase_37 AC 150 ms
46,636 KB
testcase_38 AC 173 ms
47,176 KB
testcase_39 AC 173 ms
47,128 KB
testcase_40 AC 100 ms
40,252 KB
testcase_41 AC 113 ms
41,160 KB
testcase_42 AC 99 ms
40,080 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package no115;

import java.util.Scanner;

public class Main {

	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		int n = sc.nextInt();
		int d = sc.nextInt();
		int m = sc.nextInt();
		String[][][] dp = new String[2][m+1][d+1];
		dp[0][0][0] = "";
		int before = 0;
		int now = 1;
		for(int i=0;i<n;i++) {
			for(int j=0;j<=m;j++) {
				for(int k=0;k<=d;k++) {
					dp[now][j][k] = dp[before][j][k];
					if (j >= 1 && k >= i + 1 && dp[before][j-1][k-i-1] != null) {
						dp[now][j][k] = min(dp[now][j][k], dp[before][j-1][k-i-1].concat(String.valueOf((char) (i+1))));
					}
				}
			}
			before = 1 - before;
			now = 1 - now;
		}
		String ans = dp[before][m][d];
		if (ans == null) {
			System.out.println(-1);
			return;
		}
		StringBuilder sb = new StringBuilder();
		for(int i=0;i<ans.length();i++) {
			if (i > 0) {
				sb.append(' ');
			}
			sb.append((int) ans.charAt(i));
		}
		System.out.println(sb.toString());
	}

	static String min(String a,String b) {
		if (a == null) {
			return b;
		}else if(b == null) {
			return a;
		}else{
			return a.compareTo(b) < 0 ? a : b;
		}
	}

}
0