結果

問題 No.554 recurrence formula
ユーザー kusagame12kusagame12
提出日時 2024-06-16 18:58:35
言語 Java21
(openjdk 21)
結果
AC  
実行時間 142 ms / 2,000 ms
コード長 665 bytes
コンパイル時間 2,595 ms
コンパイル使用メモリ 74,816 KB
実行使用メモリ 41,896 KB
最終ジャッジ日時 2024-06-16 18:58:49
合計ジャッジ時間 6,822 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 134 ms
41,460 KB
testcase_01 AC 131 ms
41,416 KB
testcase_02 AC 131 ms
41,320 KB
testcase_03 AC 132 ms
41,432 KB
testcase_04 AC 133 ms
41,412 KB
testcase_05 AC 132 ms
41,124 KB
testcase_06 AC 137 ms
41,456 KB
testcase_07 AC 142 ms
41,112 KB
testcase_08 AC 135 ms
41,492 KB
testcase_09 AC 130 ms
41,200 KB
testcase_10 AC 132 ms
41,540 KB
testcase_11 AC 135 ms
41,456 KB
testcase_12 AC 134 ms
41,152 KB
testcase_13 AC 135 ms
41,328 KB
testcase_14 AC 120 ms
40,476 KB
testcase_15 AC 139 ms
41,488 KB
testcase_16 AC 132 ms
41,560 KB
testcase_17 AC 131 ms
41,328 KB
testcase_18 AC 132 ms
41,440 KB
testcase_19 AC 134 ms
41,896 KB
testcase_20 AC 140 ms
41,884 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;
import java.lang.*;
import java.io.*;

class Main {
    public static void main(String[] args) {

        Scanner sc = new Scanner(System.in);

        int mod = 1000000007;

        int n = sc.nextInt();

        long odd = 0l;
        long even = 0l;
        long[] as = new long[n+1];
        as[1] = 1l;
        odd = 1l;
       
        for (int i=2; i<=n; i++) {
            if (i % 2 == 0) {
                as[i] = (i * odd) % mod;
                even += as[i];
            }else{
                as[i] += (i * even)  % mod;
                odd += as[i];
            }
        }
        
        System.out.println(as[n] % mod);
    }
}
0