結果

問題 No.44 DPなすごろく
ユーザー k_kadorak_kadora
提出日時 2015-06-15 03:14:45
言語 Java21
(openjdk 21)
結果
AC  
実行時間 136 ms / 5,000 ms
コード長 304 bytes
コンパイル時間 3,387 ms
コンパイル使用メモリ 74,984 KB
実行使用メモリ 41,572 KB
最終ジャッジ日時 2024-07-06 20:51:05
合計ジャッジ時間 7,698 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 131 ms
41,060 KB
testcase_01 AC 133 ms
41,364 KB
testcase_02 AC 133 ms
41,356 KB
testcase_03 AC 133 ms
41,184 KB
testcase_04 AC 136 ms
41,372 KB
testcase_05 AC 133 ms
41,296 KB
testcase_06 AC 134 ms
41,488 KB
testcase_07 AC 134 ms
41,536 KB
testcase_08 AC 135 ms
41,244 KB
testcase_09 AC 134 ms
41,484 KB
testcase_10 AC 133 ms
41,280 KB
testcase_11 AC 135 ms
41,572 KB
testcase_12 AC 133 ms
41,528 KB
testcase_13 AC 130 ms
41,452 KB
testcase_14 AC 131 ms
41,448 KB
testcase_15 AC 119 ms
40,172 KB
testcase_16 AC 119 ms
40,260 KB
testcase_17 AC 133 ms
41,244 KB
testcase_18 AC 121 ms
40,520 KB
testcase_19 AC 132 ms
41,264 KB
testcase_20 AC 130 ms
41,504 KB
testcase_21 AC 133 ms
41,452 KB
testcase_22 AC 134 ms
41,208 KB
testcase_23 AC 133 ms
41,572 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;
public class Yuki44{
	public static void main(String[] arg){
		Scanner sc= new Scanner(System.in);
		int n;
		n = sc.nextInt();
		long[] dp = new long[n+1];
		dp[0] = 1;
		dp[1] = 1;
		for(int i = 2;i<n+1;i++){
			dp[i] = dp[i-1] + dp[i-2];
		}
		System.out.println(dp[n]);
	}
}
0