結果

問題 No.314 ケンケンパ
ユーザー hhgfhn1hhgfhn1
提出日時 2018-10-18 13:52:33
言語 Java21
(openjdk 21)
結果
RE  
実行時間 -
コード長 369 bytes
コンパイル時間 4,427 ms
コンパイル使用メモリ 74,040 KB
実行使用メモリ 53,692 KB
最終ジャッジ日時 2024-10-15 17:56:01
合計ジャッジ時間 5,868 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 120 ms
49,168 KB
testcase_01 AC 114 ms
41,276 KB
testcase_02 AC 117 ms
41,244 KB
testcase_03 AC 103 ms
41,240 KB
testcase_04 RE -
testcase_05 RE -
testcase_06 AC 103 ms
41,416 KB
testcase_07 AC 112 ms
41,164 KB
testcase_08 AC 119 ms
41,040 KB
testcase_09 AC 114 ms
41,292 KB
testcase_10 AC 118 ms
41,036 KB
testcase_11 AC 100 ms
41,204 KB
testcase_12 AC 107 ms
41,544 KB
testcase_13 AC 117 ms
41,336 KB
testcase_14 AC 112 ms
41,260 KB
testcase_15 AC 113 ms
41,364 KB
testcase_16 AC 107 ms
40,416 KB
testcase_17 AC 124 ms
41,916 KB
testcase_18 AC 138 ms
45,440 KB
testcase_19 AC 120 ms
48,948 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Main {

	@SuppressWarnings("resource")
	public static void main(String args[]) {
		Scanner scanner = new Scanner(System.in);
		int n = scanner.nextInt();
		int mod=1000000007;
		long dp[]=new long[n];
		dp[0]=1;
		dp[1]=2;
		dp[2]=2;
		for(int i=3;i<n;i++){
			dp[i]=(dp[i-3]+dp[i-2])%mod;
		}
		System.out.println(dp[n-1]);
	}
}
0