結果

問題 No.44 DPなすごろく
ユーザー fjafjafjafjafjafja
提出日時 2017-09-25 23:47:55
言語 Java21
(openjdk 21)
結果
AC  
実行時間 136 ms / 5,000 ms
コード長 298 bytes
コンパイル時間 3,244 ms
コンパイル使用メモリ 74,520 KB
実行使用メモリ 54,328 KB
最終ジャッジ日時 2024-11-14 13:23:48
合計ジャッジ時間 7,298 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 125 ms
53,980 KB
testcase_01 AC 124 ms
53,988 KB
testcase_02 AC 127 ms
53,880 KB
testcase_03 AC 126 ms
54,112 KB
testcase_04 AC 126 ms
54,116 KB
testcase_05 AC 128 ms
54,316 KB
testcase_06 AC 129 ms
54,104 KB
testcase_07 AC 126 ms
53,848 KB
testcase_08 AC 113 ms
52,556 KB
testcase_09 AC 125 ms
54,068 KB
testcase_10 AC 130 ms
53,984 KB
testcase_11 AC 134 ms
53,992 KB
testcase_12 AC 134 ms
54,112 KB
testcase_13 AC 136 ms
53,840 KB
testcase_14 AC 128 ms
53,888 KB
testcase_15 AC 126 ms
53,896 KB
testcase_16 AC 128 ms
53,928 KB
testcase_17 AC 129 ms
54,280 KB
testcase_18 AC 127 ms
54,004 KB
testcase_19 AC 128 ms
53,928 KB
testcase_20 AC 128 ms
54,328 KB
testcase_21 AC 129 ms
53,940 KB
testcase_22 AC 117 ms
52,832 KB
testcase_23 AC 128 ms
53,996 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class N44
{
	public static void main(String[] args)
	{
		Scanner sc = new Scanner(System.in);
		int a=sc.nextInt();
		long[] ans=new long[a];
		ans[0]=1;
		ans[1]=2;
		for(int i=2;i<a;i++)
		{
			ans[i]=ans[i-2]+ans[i-1];
		}
		System.out.println(ans[a-1]);
	}

}
0