結果

問題 No.44 DPなすごろく
ユーザー uafr_csuafr_cs
提出日時 2015-06-03 17:22:44
言語 Java21
(openjdk 21)
結果
AC  
実行時間 113 ms / 5,000 ms
コード長 438 bytes
コンパイル時間 2,164 ms
コンパイル使用メモリ 73,884 KB
実行使用メモリ 41,580 KB
最終ジャッジ日時 2024-07-06 13:54:34
合計ジャッジ時間 5,306 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 94 ms
40,252 KB
testcase_01 AC 102 ms
41,316 KB
testcase_02 AC 92 ms
40,676 KB
testcase_03 AC 92 ms
40,364 KB
testcase_04 AC 101 ms
41,188 KB
testcase_05 AC 98 ms
40,908 KB
testcase_06 AC 99 ms
41,272 KB
testcase_07 AC 100 ms
41,580 KB
testcase_08 AC 92 ms
40,104 KB
testcase_09 AC 100 ms
41,176 KB
testcase_10 AC 101 ms
41,044 KB
testcase_11 AC 100 ms
41,208 KB
testcase_12 AC 91 ms
40,252 KB
testcase_13 AC 103 ms
41,040 KB
testcase_14 AC 99 ms
40,740 KB
testcase_15 AC 92 ms
40,320 KB
testcase_16 AC 99 ms
40,900 KB
testcase_17 AC 101 ms
41,100 KB
testcase_18 AC 101 ms
41,284 KB
testcase_19 AC 113 ms
41,052 KB
testcase_20 AC 102 ms
41,048 KB
testcase_21 AC 101 ms
40,908 KB
testcase_22 AC 101 ms
41,164 KB
testcase_23 AC 103 ms
41,076 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Arrays;
import java.util.LinkedList;
import java.util.Scanner;

public class Main {
	
	public static void main(String[] args){
		Scanner sc = new Scanner(System.in);
		
		final int N = sc.nextInt();
		
		long[] DP = new long[N + 1];
		DP[0] = 1;
		for(int cur = 0; cur < N; cur++){
			if(cur + 1 <= N){ DP[cur + 1] += DP[cur]; }
			if(cur + 2 <= N){ DP[cur + 2] += DP[cur]; }
		}
		
		System.out.println(DP[N]);
		
	}
	
}
0