結果

問題 No.44 DPなすごろく
ユーザー scachescache
提出日時 2014-11-13 15:05:05
言語 Java21
(openjdk 21)
結果
AC  
実行時間 127 ms / 5,000 ms
コード長 513 bytes
コンパイル時間 3,108 ms
コンパイル使用メモリ 74,852 KB
実行使用メモリ 55,472 KB
最終ジャッジ日時 2024-06-10 02:40:11
合計ジャッジ時間 6,407 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 108 ms
53,468 KB
testcase_01 AC 113 ms
53,068 KB
testcase_02 AC 104 ms
52,748 KB
testcase_03 AC 124 ms
54,036 KB
testcase_04 AC 121 ms
54,232 KB
testcase_05 AC 110 ms
55,472 KB
testcase_06 AC 124 ms
53,792 KB
testcase_07 AC 127 ms
53,828 KB
testcase_08 AC 127 ms
53,880 KB
testcase_09 AC 126 ms
53,652 KB
testcase_10 AC 118 ms
54,032 KB
testcase_11 AC 115 ms
54,040 KB
testcase_12 AC 111 ms
53,408 KB
testcase_13 AC 103 ms
52,944 KB
testcase_14 AC 113 ms
54,092 KB
testcase_15 AC 113 ms
54,012 KB
testcase_16 AC 118 ms
54,092 KB
testcase_17 AC 118 ms
54,180 KB
testcase_18 AC 119 ms
54,152 KB
testcase_19 AC 110 ms
53,692 KB
testcase_20 AC 94 ms
52,428 KB
testcase_21 AC 112 ms
53,816 KB
testcase_22 AC 114 ms
54,096 KB
testcase_23 AC 102 ms
52,984 KB
権限があれば一括ダウンロードができます

ソースコード

diff #


import java.util.Scanner;

/**
 * yukicoder no.44
 * @author scache
 *
 */
public class DpSugoroku {
	public static void main(String[] args) {
		DpSugoroku p = new DpSugoroku();
	}

	public DpSugoroku() {
		Scanner sc = new Scanner(System.in);
		int n =sc.nextInt();
		
		solve(n);
	}

	public void solve(int n) {
		long[] dp = new long[n+2];
		
		dp[0] = 1;
		for(int i=0;i<dp.length-2;i++){
			dp[i+1] += dp[i];
			dp[i+2] += dp[i];
		}
		
		System.out.println(dp[n]);
	}

}
0