結果

問題 No.44 DPなすごろく
ユーザー kano_townkano_town
提出日時 2014-12-08 21:35:47
言語 Java21
(openjdk 21)
結果
AC  
実行時間 119 ms / 5,000 ms
コード長 323 bytes
コンパイル時間 3,363 ms
コンパイル使用メモリ 78,080 KB
実行使用メモリ 54,432 KB
最終ジャッジ日時 2024-06-11 18:30:10
合計ジャッジ時間 6,819 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 117 ms
54,140 KB
testcase_01 AC 102 ms
53,052 KB
testcase_02 AC 119 ms
53,792 KB
testcase_03 AC 117 ms
52,960 KB
testcase_04 AC 113 ms
54,164 KB
testcase_05 AC 100 ms
52,752 KB
testcase_06 AC 105 ms
54,240 KB
testcase_07 AC 104 ms
52,892 KB
testcase_08 AC 104 ms
52,732 KB
testcase_09 AC 114 ms
54,432 KB
testcase_10 AC 118 ms
54,004 KB
testcase_11 AC 119 ms
54,372 KB
testcase_12 AC 100 ms
52,824 KB
testcase_13 AC 114 ms
54,248 KB
testcase_14 AC 117 ms
54,124 KB
testcase_15 AC 113 ms
53,920 KB
testcase_16 AC 106 ms
53,204 KB
testcase_17 AC 113 ms
53,876 KB
testcase_18 AC 117 ms
54,208 KB
testcase_19 AC 105 ms
53,520 KB
testcase_20 AC 118 ms
54,252 KB
testcase_21 AC 112 ms
54,036 KB
testcase_22 AC 103 ms
52,740 KB
testcase_23 AC 111 ms
54,044 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Yukicoder44 {

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

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