結果

問題 No.44 DPなすごろく
ユーザー chiho_miyakochiho_miyako
提出日時 2015-04-15 02:21:11
言語 Java21
(openjdk 21)
結果
AC  
実行時間 123 ms / 5,000 ms
コード長 447 bytes
コンパイル時間 1,961 ms
コンパイル使用メモリ 77,536 KB
実行使用メモリ 41,800 KB
最終ジャッジ日時 2024-07-04 14:33:08
合計ジャッジ時間 5,742 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 122 ms
41,180 KB
testcase_01 AC 120 ms
41,384 KB
testcase_02 AC 115 ms
41,272 KB
testcase_03 AC 115 ms
41,632 KB
testcase_04 AC 106 ms
41,616 KB
testcase_05 AC 112 ms
41,400 KB
testcase_06 AC 108 ms
40,988 KB
testcase_07 AC 109 ms
40,512 KB
testcase_08 AC 103 ms
41,584 KB
testcase_09 AC 106 ms
41,428 KB
testcase_10 AC 118 ms
41,748 KB
testcase_11 AC 103 ms
41,216 KB
testcase_12 AC 104 ms
41,552 KB
testcase_13 AC 117 ms
41,104 KB
testcase_14 AC 110 ms
40,104 KB
testcase_15 AC 123 ms
41,544 KB
testcase_16 AC 109 ms
41,516 KB
testcase_17 AC 118 ms
41,512 KB
testcase_18 AC 103 ms
41,400 KB
testcase_19 AC 105 ms
41,584 KB
testcase_20 AC 122 ms
41,800 KB
testcase_21 AC 115 ms
41,160 KB
testcase_22 AC 106 ms
41,204 KB
testcase_23 AC 119 ms
41,644 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();
        long a=0;
        long[] b=new long[n];
        for(int i=0; i<=n/2; i++){
            b[i]=1;
            for(int j=0; j<i; j++){
                b[i]=b[i]*(n-i-j)/(j+1);
            }
            a=a+b[i];
        }
        System.out.println(a);
    }
}
0