結果

問題 No.314 ケンケンパ
ユーザー 37zigen37zigen
提出日時 2016-03-25 20:15:47
言語 Java21
(openjdk 21)
結果
AC  
実行時間 150 ms / 1,000 ms
コード長 590 bytes
コンパイル時間 2,011 ms
コンパイル使用メモリ 74,736 KB
実行使用メモリ 60,308 KB
最終ジャッジ日時 2024-10-02 00:50:16
合計ジャッジ時間 5,480 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 147 ms
60,236 KB
testcase_01 AC 129 ms
53,884 KB
testcase_02 AC 129 ms
53,964 KB
testcase_03 AC 132 ms
53,960 KB
testcase_04 AC 131 ms
56,048 KB
testcase_05 AC 132 ms
54,116 KB
testcase_06 AC 116 ms
52,732 KB
testcase_07 AC 128 ms
54,012 KB
testcase_08 AC 126 ms
53,968 KB
testcase_09 AC 125 ms
53,984 KB
testcase_10 AC 133 ms
54,136 KB
testcase_11 AC 131 ms
54,080 KB
testcase_12 AC 128 ms
54,064 KB
testcase_13 AC 133 ms
54,192 KB
testcase_14 AC 135 ms
53,860 KB
testcase_15 AC 137 ms
53,936 KB
testcase_16 AC 135 ms
54,036 KB
testcase_17 AC 136 ms
54,132 KB
testcase_18 AC 145 ms
56,840 KB
testcase_19 AC 150 ms
60,308 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package yukicoder314;
import java.util.Scanner;
public class Main {
	public static void main(String[] args){
		Scanner sc=new Scanner(System.in);
		int n=sc.nextInt();
		long[] dp=new long[n+1];
		long mod=(long)Math.pow(10, 9)+7;
		dp[0]=0;///ケン・ケン・パ ケン・パ
		dp[1]=0;
		if(n==1){
			System.out.println(1);
			return;
		}
		dp[2]=1;
		if(n==2){
			System.out.println(2);
			return;
		}
		dp[3]=1;
		if(n==3){
			System.out.println(2);
			return;
		}
		for(int i=4;i<=n;i++){
			dp[i]=(dp[i-2]+dp[i-3])%mod;
		}
		System.out.println((dp[n]+dp[n-1]+dp[n-2])%mod);
	}
}
0