結果

問題 No.44 DPなすごろく
ユーザー shinwisteriashinwisteria
提出日時 2017-03-31 14:54:42
言語 Java21
(openjdk 21)
結果
AC  
実行時間 119 ms / 5,000 ms
コード長 336 bytes
コンパイル時間 3,427 ms
コンパイル使用メモリ 74,068 KB
実行使用メモリ 54,192 KB
最終ジャッジ日時 2024-07-07 04:41:36
合計ジャッジ時間 6,298 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 114 ms
53,772 KB
testcase_01 AC 108 ms
53,972 KB
testcase_02 AC 118 ms
53,928 KB
testcase_03 AC 119 ms
53,740 KB
testcase_04 AC 107 ms
52,636 KB
testcase_05 AC 118 ms
53,976 KB
testcase_06 AC 115 ms
53,744 KB
testcase_07 AC 113 ms
53,764 KB
testcase_08 AC 100 ms
53,112 KB
testcase_09 AC 116 ms
53,876 KB
testcase_10 AC 108 ms
54,060 KB
testcase_11 AC 113 ms
54,152 KB
testcase_12 AC 114 ms
54,192 KB
testcase_13 AC 116 ms
54,020 KB
testcase_14 AC 105 ms
52,828 KB
testcase_15 AC 103 ms
52,624 KB
testcase_16 AC 114 ms
54,120 KB
testcase_17 AC 119 ms
54,060 KB
testcase_18 AC 102 ms
52,652 KB
testcase_19 AC 115 ms
54,100 KB
testcase_20 AC 112 ms
54,108 KB
testcase_21 AC 116 ms
53,824 KB
testcase_22 AC 102 ms
52,852 KB
testcase_23 AC 100 ms
52,604 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class DPsugoroku {

	public static void main(String[] args) {
		Scanner s = new Scanner(System.in);
		int N = s.nextInt();
		s.close();
		long[] root = new long[N+1];
		root[1] = 1;
		root[2] = 2;
		for(int i =3;i <= N;i++){
			root[i] = root[i-1] + root[i-2];
		}
		System.out.println(root[N]);

	}

}
0