結果

問題 No.44 DPなすごろく
ユーザー kuramukuramu
提出日時 2016-01-30 21:48:03
言語 Java21
(openjdk 21)
結果
AC  
実行時間 57 ms / 5,000 ms
コード長 570 bytes
コンパイル時間 3,786 ms
コンパイル使用メモリ 74,960 KB
実行使用メモリ 50,416 KB
最終ジャッジ日時 2024-09-21 19:30:43
合計ジャッジ時間 6,166 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 56 ms
50,260 KB
testcase_01 AC 55 ms
50,316 KB
testcase_02 AC 55 ms
50,396 KB
testcase_03 AC 55 ms
50,116 KB
testcase_04 AC 55 ms
50,328 KB
testcase_05 AC 56 ms
50,332 KB
testcase_06 AC 54 ms
50,312 KB
testcase_07 AC 55 ms
50,292 KB
testcase_08 AC 57 ms
50,284 KB
testcase_09 AC 55 ms
50,228 KB
testcase_10 AC 54 ms
50,316 KB
testcase_11 AC 54 ms
50,312 KB
testcase_12 AC 55 ms
50,048 KB
testcase_13 AC 54 ms
50,340 KB
testcase_14 AC 54 ms
50,316 KB
testcase_15 AC 57 ms
50,416 KB
testcase_16 AC 55 ms
49,784 KB
testcase_17 AC 56 ms
50,016 KB
testcase_18 AC 55 ms
49,848 KB
testcase_19 AC 55 ms
50,348 KB
testcase_20 AC 57 ms
49,872 KB
testcase_21 AC 55 ms
50,116 KB
testcase_22 AC 57 ms
50,348 KB
testcase_23 AC 55 ms
50,044 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;

public class Main {
	 public static void main(String[] args) {
	      BufferedReader stdReader =new BufferedReader(new InputStreamReader(System.in));
	      try {
	    	  int N = Integer.parseInt(stdReader.readLine());
	    	  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]);
	      } catch (IOException e) {
			e.printStackTrace();
	      }
	}
}
0