結果

問題 No.314 ケンケンパ
ユーザー mikhailmikhail
提出日時 2019-12-05 10:51:17
言語 Java
(openjdk 23)
結果
WA  
実行時間 -
コード長 426 bytes
コンパイル時間 2,248 ms
コンパイル使用メモリ 74,112 KB
実行使用メモリ 60,568 KB
最終ジャッジ日時 2024-12-17 14:46:48
合計ジャッジ時間 5,862 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 126 ms
54,232 KB
testcase_02 AC 129 ms
54,232 KB
testcase_03 AC 119 ms
52,756 KB
testcase_04 RE -
testcase_05 RE -
testcase_06 AC 125 ms
54,256 KB
testcase_07 AC 113 ms
52,924 KB
testcase_08 AC 123 ms
54,096 KB
testcase_09 AC 113 ms
53,036 KB
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;
public class Main{
	
	public static void main(String[] args){
		Scanner scan = new Scanner(System.in);
		
		// input
		final int NUM = scan.nextInt();
		long[] kenpa = new long[NUM+1];
		
		// search
		kenpa[1] = 1;
		kenpa[2] = 2;
		kenpa[3] = 2;
		for(int i = 4; i <= NUM; i++){
			kenpa[i] = kenpa[i - 2] + kenpa[i - 3];
		}
		
		// answer
		System.out.println(kenpa[NUM] % 1000000007);
		
		
	}
}
0