結果

問題 No.44 DPなすごろく
ユーザー リチウムリチウム
提出日時 2014-10-25 15:11:53
言語 Java21
(openjdk 21)
結果
AC  
実行時間 124 ms / 5,000 ms
コード長 306 bytes
コンパイル時間 2,223 ms
コンパイル使用メモリ 74,624 KB
実行使用メモリ 41,768 KB
最終ジャッジ日時 2024-06-09 17:41:39
合計ジャッジ時間 5,084 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 104 ms
41,008 KB
testcase_01 AC 100 ms
40,396 KB
testcase_02 AC 115 ms
41,128 KB
testcase_03 AC 113 ms
41,132 KB
testcase_04 AC 110 ms
40,972 KB
testcase_05 AC 100 ms
40,152 KB
testcase_06 AC 106 ms
40,840 KB
testcase_07 AC 100 ms
40,020 KB
testcase_08 AC 107 ms
40,864 KB
testcase_09 AC 105 ms
41,084 KB
testcase_10 AC 111 ms
41,136 KB
testcase_11 AC 124 ms
41,768 KB
testcase_12 AC 106 ms
41,024 KB
testcase_13 AC 106 ms
41,056 KB
testcase_14 AC 105 ms
41,076 KB
testcase_15 AC 95 ms
40,040 KB
testcase_16 AC 107 ms
40,948 KB
testcase_17 AC 105 ms
41,300 KB
testcase_18 AC 97 ms
40,188 KB
testcase_19 AC 106 ms
41,288 KB
testcase_20 AC 99 ms
39,836 KB
testcase_21 AC 106 ms
41,472 KB
testcase_22 AC 104 ms
41,180 KB
testcase_23 AC 108 ms
41,176 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

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