結果

問題 No.314 ケンケンパ
ユーザー takeya_okinotakeya_okino
提出日時 2017-06-14 16:34:38
言語 Java21
(openjdk 21)
結果
AC  
実行時間 144 ms / 1,000 ms
コード長 461 bytes
コンパイル時間 2,303 ms
コンパイル使用メモリ 74,600 KB
実行使用メモリ 60,068 KB
最終ジャッジ日時 2024-09-24 20:54:53
合計ジャッジ時間 5,334 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 140 ms
59,984 KB
testcase_01 AC 125 ms
53,856 KB
testcase_02 AC 122 ms
54,144 KB
testcase_03 AC 127 ms
53,736 KB
testcase_04 AC 125 ms
53,792 KB
testcase_05 AC 127 ms
54,072 KB
testcase_06 AC 125 ms
53,816 KB
testcase_07 AC 127 ms
53,896 KB
testcase_08 AC 112 ms
52,580 KB
testcase_09 AC 113 ms
53,024 KB
testcase_10 AC 127 ms
53,852 KB
testcase_11 AC 127 ms
54,280 KB
testcase_12 AC 125 ms
55,776 KB
testcase_13 AC 114 ms
53,096 KB
testcase_14 AC 124 ms
53,736 KB
testcase_15 AC 121 ms
54,376 KB
testcase_16 AC 127 ms
53,956 KB
testcase_17 AC 130 ms
53,892 KB
testcase_18 AC 144 ms
56,580 KB
testcase_19 AC 142 ms
60,068 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
  public static void main(String[] args) {
    Scanner sc = new Scanner(System.in);
    long MOD = (long)Math.pow(10, 9) + 7;
    int N = sc.nextInt();
    // dp[i]は長さ(i+1)のコース数 mod MOD
    long[] dp = new long[N];
    dp[0] = 1;
    if(1 < N) dp[1] = 2;
    if(2 < N) dp[2] = 2;
    for(int i = 3; i < N; i++) {
      dp[i] = (dp[i - 2] + dp[i - 3]) % MOD;
    }
    System.out.println(dp[N - 1]);
  }
}
0