結果

問題 No.314 ケンケンパ
ユーザー kohaku_kohakukohaku_kohaku
提出日時 2016-11-28 11:58:57
言語 Java21
(openjdk 21)
結果
AC  
実行時間 161 ms / 1,000 ms
コード長 576 bytes
コンパイル時間 1,796 ms
コンパイル使用メモリ 73,852 KB
実行使用メモリ 64,588 KB
最終ジャッジ日時 2024-11-27 12:33:35
合計ジャッジ時間 5,000 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 159 ms
64,368 KB
testcase_01 AC 110 ms
40,984 KB
testcase_02 AC 112 ms
41,228 KB
testcase_03 AC 112 ms
40,952 KB
testcase_04 AC 98 ms
39,572 KB
testcase_05 AC 102 ms
39,956 KB
testcase_06 AC 117 ms
41,236 KB
testcase_07 AC 105 ms
40,068 KB
testcase_08 AC 112 ms
41,044 KB
testcase_09 AC 107 ms
39,940 KB
testcase_10 AC 120 ms
41,112 KB
testcase_11 AC 118 ms
41,260 KB
testcase_12 AC 115 ms
41,236 KB
testcase_13 AC 117 ms
41,024 KB
testcase_14 AC 119 ms
41,164 KB
testcase_15 AC 117 ms
41,216 KB
testcase_16 AC 107 ms
40,596 KB
testcase_17 AC 111 ms
42,516 KB
testcase_18 AC 142 ms
52,700 KB
testcase_19 AC 161 ms
64,588 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        int N = sc.nextInt();
        int mod = (int)(Math.pow(10,9))+7;
        long [] ken = new long [N+1];
        long [] kenken = new long [N+1];
        long [] pa = new long [N+1];
        ken[1]=1;
        for(int i=2; i<=N; i++){
            ken[i]=pa[i-1];
            kenken[i]=ken[i-1];
            pa[i]=(ken[i-1]+kenken[i-1])%mod;
        }
        long ans = (ken[N]+kenken[N]+pa[N])%mod;
        System.out.println(ans);
    }
}
0