結果

問題 No.314 ケンケンパ
ユーザー tentententen
提出日時 2024-02-05 15:49:37
言語 Java21
(openjdk 21)
結果
AC  
実行時間 205 ms / 1,000 ms
コード長 1,497 bytes
コンパイル時間 2,654 ms
コンパイル使用メモリ 80,316 KB
実行使用メモリ 80,108 KB
最終ジャッジ日時 2024-09-28 11:35:48
合計ジャッジ時間 4,852 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 205 ms
80,108 KB
testcase_01 AC 61 ms
46,792 KB
testcase_02 AC 62 ms
46,756 KB
testcase_03 AC 63 ms
46,784 KB
testcase_04 AC 63 ms
46,392 KB
testcase_05 AC 64 ms
37,368 KB
testcase_06 AC 61 ms
37,224 KB
testcase_07 AC 63 ms
37,480 KB
testcase_08 AC 62 ms
37,660 KB
testcase_09 AC 63 ms
37,620 KB
testcase_10 AC 77 ms
37,628 KB
testcase_11 AC 61 ms
37,512 KB
testcase_12 AC 61 ms
37,352 KB
testcase_13 AC 61 ms
37,280 KB
testcase_14 AC 62 ms
37,208 KB
testcase_15 AC 64 ms
38,028 KB
testcase_16 AC 68 ms
38,492 KB
testcase_17 AC 77 ms
41,524 KB
testcase_18 AC 123 ms
55,560 KB
testcase_19 AC 203 ms
75,372 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.*;
import java.util.*;
import java.util.function.*;
import java.util.stream.*;

public class Main {
    static final int MOD = 1000000007;
    public static void main(String[] args) throws Exception {
        Scanner sc = new Scanner();
        int n = sc.nextInt();
        int[][] dp = new int[n + 1][3];
        dp[0][2] = 1;
        for (int i = 1; i <= n; i++) {
            dp[i][0] = dp[i - 1][2];
            dp[i][1] = dp[i - 1][0];
            dp[i][2] = (dp[i - 1][0] + dp[i - 1][1]) % MOD;
        }
        long ans = Arrays.stream(dp[n]).reduce(0, (a, b) -> (a + b) % MOD);
        System.out.println(ans);
    }
}
class Scanner {
    BufferedReader br;
    StringTokenizer st = new StringTokenizer("");
    StringBuilder sb = new StringBuilder();
    
    public Scanner() {
        try {
            br = new BufferedReader(new InputStreamReader(System.in));
        } catch (Exception e) {
            
        }
    }
    
    public int nextInt() {
        return Integer.parseInt(next());
    }
    
    public long nextLong() {
        return Long.parseLong(next());
    }
    
    public double nextDouble() {
        return Double.parseDouble(next());
    }
    
    public String next() {
        try {
            while (!st.hasMoreTokens()) {
                st = new StringTokenizer(br.readLine());
            }
        } catch (Exception e) {
            e.printStackTrace();
        } finally {
            return st.nextToken();
        }
    }
    
}
0