結果

問題 No.44 DPなすごろく
ユーザー spaciaspacia
提出日時 2016-01-04 09:10:02
言語 Java21
(openjdk 21)
結果
AC  
実行時間 51 ms / 5,000 ms
コード長 484 bytes
コンパイル時間 2,161 ms
コンパイル使用メモリ 74,824 KB
実行使用メモリ 50,420 KB
最終ジャッジ日時 2024-09-19 11:07:45
合計ジャッジ時間 3,855 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 51 ms
50,068 KB
testcase_01 AC 49 ms
50,300 KB
testcase_02 AC 47 ms
49,980 KB
testcase_03 AC 49 ms
50,016 KB
testcase_04 AC 50 ms
50,304 KB
testcase_05 AC 47 ms
50,196 KB
testcase_06 AC 49 ms
49,848 KB
testcase_07 AC 49 ms
50,264 KB
testcase_08 AC 50 ms
49,844 KB
testcase_09 AC 48 ms
50,232 KB
testcase_10 AC 49 ms
50,356 KB
testcase_11 AC 51 ms
50,152 KB
testcase_12 AC 50 ms
50,224 KB
testcase_13 AC 48 ms
49,988 KB
testcase_14 AC 50 ms
50,420 KB
testcase_15 AC 51 ms
50,112 KB
testcase_16 AC 50 ms
50,336 KB
testcase_17 AC 50 ms
50,116 KB
testcase_18 AC 46 ms
50,248 KB
testcase_19 AC 50 ms
50,320 KB
testcase_20 AC 49 ms
49,896 KB
testcase_21 AC 48 ms
49,880 KB
testcase_22 AC 50 ms
49,852 KB
testcase_23 AC 50 ms
50,264 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.*;
import java.util.*;
import java.math.*;

class Main {
	
	public static void out (Object o) {
		System.out.println(o);
	}
	
	public static void main (String[] args) throws IOException {
		BufferedReader br = 
			new BufferedReader(new InputStreamReader(System.in));
		
		int n = Integer.parseInt(br.readLine());
		long[] dp = new long[n + 1];
		
		dp[0] = 1;
		dp[1] = 1;
		for (int i = 2; i <= n; i++) {
			dp[i] = dp[i - 1] + dp[i - 2];
		}
		
		out(dp[n]);
		
	}
}
0