結果

問題 No.314 ケンケンパ
ユーザー hhgfhn1hhgfhn1
提出日時 2018-10-18 13:53:43
言語 Java21
(openjdk 21)
結果
AC  
実行時間 154 ms / 1,000 ms
コード長 371 bytes
コンパイル時間 2,859 ms
コンパイル使用メモリ 74,936 KB
実行使用メモリ 60,216 KB
最終ジャッジ日時 2024-10-15 19:43:01
合計ジャッジ時間 7,117 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 139 ms
59,360 KB
testcase_01 AC 132 ms
54,084 KB
testcase_02 AC 132 ms
53,764 KB
testcase_03 AC 133 ms
54,188 KB
testcase_04 AC 132 ms
54,160 KB
testcase_05 AC 130 ms
53,916 KB
testcase_06 AC 131 ms
54,120 KB
testcase_07 AC 130 ms
54,100 KB
testcase_08 AC 132 ms
53,760 KB
testcase_09 AC 133 ms
53,924 KB
testcase_10 AC 134 ms
54,108 KB
testcase_11 AC 135 ms
54,012 KB
testcase_12 AC 132 ms
54,076 KB
testcase_13 AC 133 ms
53,812 KB
testcase_14 AC 134 ms
54,088 KB
testcase_15 AC 135 ms
54,180 KB
testcase_16 AC 137 ms
54,004 KB
testcase_17 AC 139 ms
53,976 KB
testcase_18 AC 148 ms
56,840 KB
testcase_19 AC 154 ms
60,216 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+3];
		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