結果

問題 No.287 場合の数
ユーザー kou6839kou6839
提出日時 2015-10-16 13:08:59
言語 Java21
(openjdk 21)
結果
AC  
実行時間 152 ms / 5,000 ms
コード長 399 bytes
コンパイル時間 2,224 ms
コンパイル使用メモリ 73,876 KB
実行使用メモリ 41,444 KB
最終ジャッジ日時 2024-11-08 00:01:21
合計ジャッジ時間 6,724 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 143 ms
41,232 KB
testcase_01 AC 135 ms
41,192 KB
testcase_02 AC 135 ms
41,188 KB
testcase_03 AC 143 ms
41,224 KB
testcase_04 AC 149 ms
41,224 KB
testcase_05 AC 143 ms
41,120 KB
testcase_06 AC 137 ms
41,088 KB
testcase_07 AC 131 ms
40,080 KB
testcase_08 AC 146 ms
41,436 KB
testcase_09 AC 141 ms
41,168 KB
testcase_10 AC 152 ms
41,296 KB
testcase_11 AC 128 ms
40,184 KB
testcase_12 AC 143 ms
41,204 KB
testcase_13 AC 136 ms
40,928 KB
testcase_14 AC 140 ms
41,332 KB
testcase_15 AC 144 ms
41,304 KB
testcase_16 AC 143 ms
41,372 KB
testcase_17 AC 145 ms
41,396 KB
testcase_18 AC 140 ms
41,324 KB
testcase_19 AC 138 ms
41,364 KB
testcase_20 AC 141 ms
41,112 KB
testcase_21 AC 130 ms
40,460 KB
testcase_22 AC 143 ms
41,232 KB
testcase_23 AC 139 ms
41,444 KB
testcase_24 AC 139 ms
41,308 KB
権限があれば一括ダウンロードができます

ソースコード

diff #


import java.util.*;

public class Main {
	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		
		int d = sc.nextInt();
		long[][] dp = new long[10][6*d+1];
		dp[0][0] = 1;
		for(int i=0;i<8;i++){
			for(int j=0;j<6*d+1;j++){
				for(int x = 0;x<d+1;x++){
					if(j+x<=6*d){
						dp[i+1][j+x] += dp[i][j];
					}
				}
			}
		}
		System.out.println(dp[8][6*d]);
	}
}
0