結果

問題 No.44 DPなすごろく
ユーザー 101000010101000010
提出日時 2017-05-18 01:25:27
言語 Java21
(openjdk 21)
結果
AC  
実行時間 125 ms / 5,000 ms
コード長 447 bytes
コンパイル時間 3,568 ms
コンパイル使用メモリ 74,236 KB
実行使用メモリ 41,864 KB
最終ジャッジ日時 2024-09-17 21:06:43
合計ジャッジ時間 6,211 ms
ジャッジサーバーID
(参考情報)
judge1 / judge6
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 106 ms
41,144 KB
testcase_01 AC 98 ms
41,524 KB
testcase_02 AC 97 ms
40,944 KB
testcase_03 AC 107 ms
41,164 KB
testcase_04 AC 108 ms
40,984 KB
testcase_05 AC 106 ms
41,248 KB
testcase_06 AC 115 ms
41,460 KB
testcase_07 AC 116 ms
41,864 KB
testcase_08 AC 101 ms
41,448 KB
testcase_09 AC 107 ms
40,876 KB
testcase_10 AC 110 ms
41,352 KB
testcase_11 AC 111 ms
41,220 KB
testcase_12 AC 104 ms
41,164 KB
testcase_13 AC 106 ms
41,468 KB
testcase_14 AC 114 ms
41,140 KB
testcase_15 AC 99 ms
41,352 KB
testcase_16 AC 112 ms
41,320 KB
testcase_17 AC 110 ms
41,220 KB
testcase_18 AC 109 ms
41,024 KB
testcase_19 AC 114 ms
41,352 KB
testcase_20 AC 111 ms
41,068 KB
testcase_21 AC 112 ms
41,352 KB
testcase_22 AC 111 ms
41,368 KB
testcase_23 AC 125 ms
41,244 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class No44 {
    public static void main(String[] args){
        int N;
        Scanner sc = new Scanner(System.in);
        N = sc.nextInt();
        
        long[] combination = new long[N+1];
        combination[0] = 1;
        combination[1] = 1;
        for(int i=2; i<N+1; i++){
            combination[i] = combination[i-1] + combination[i-2];
        }
        System.out.println(combination[N]);
    }
}
0