結果

問題 No.287 場合の数
ユーザー GrenacheGrenache
提出日時 2015-10-09 22:46:31
言語 Java21
(openjdk 21)
結果
AC  
実行時間 157 ms / 5,000 ms
コード長 545 bytes
コンパイル時間 3,429 ms
コンパイル使用メモリ 74,504 KB
実行使用メモリ 41,452 KB
最終ジャッジ日時 2024-11-07 23:55:37
合計ジャッジ時間 8,104 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 139 ms
41,340 KB
testcase_01 AC 132 ms
41,432 KB
testcase_02 AC 134 ms
41,400 KB
testcase_03 AC 155 ms
41,104 KB
testcase_04 AC 136 ms
40,696 KB
testcase_05 AC 139 ms
41,080 KB
testcase_06 AC 130 ms
41,088 KB
testcase_07 AC 140 ms
41,108 KB
testcase_08 AC 138 ms
41,336 KB
testcase_09 AC 140 ms
41,248 KB
testcase_10 AC 157 ms
41,272 KB
testcase_11 AC 143 ms
41,264 KB
testcase_12 AC 136 ms
41,188 KB
testcase_13 AC 129 ms
41,068 KB
testcase_14 AC 138 ms
41,376 KB
testcase_15 AC 141 ms
41,220 KB
testcase_16 AC 137 ms
41,228 KB
testcase_17 AC 137 ms
41,120 KB
testcase_18 AC 124 ms
40,508 KB
testcase_19 AC 136 ms
41,344 KB
testcase_20 AC 138 ms
41,224 KB
testcase_21 AC 135 ms
41,096 KB
testcase_22 AC 135 ms
41,348 KB
testcase_23 AC 137 ms
41,452 KB
testcase_24 AC 136 ms
41,244 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;


public class Main_yukicoder287 {

    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);

        int n = sc.nextInt();
        long[][] dp = new long[9][6 * n + 1];
        dp[0][0] = 1;
        for (int i = 1; i <= 8; i++) {
        	for (int j = 0; j <= 6 * n; j++) {
        		for (int k = Math.max(0, j - n); k <= j; k++) {
            		dp[i][j] += dp[i - 1][k];
        		}
        	}
        }
        
        System.out.println(dp[8][6 * n]);

        sc.close();
    }
}
0