結果

問題 No.554 recurrence formula
ユーザー kusagame12kusagame12
提出日時 2024-06-16 18:54:57
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 624 bytes
コンパイル時間 2,673 ms
コンパイル使用メモリ 73,868 KB
実行使用メモリ 42,196 KB
最終ジャッジ日時 2024-06-16 18:55:05
合計ジャッジ時間 7,004 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 133 ms
41,340 KB
testcase_01 AC 123 ms
40,260 KB
testcase_02 AC 134 ms
41,336 KB
testcase_03 AC 129 ms
41,380 KB
testcase_04 AC 130 ms
41,232 KB
testcase_05 AC 140 ms
41,196 KB
testcase_06 AC 134 ms
41,452 KB
testcase_07 AC 131 ms
41,216 KB
testcase_08 AC 130 ms
41,156 KB
testcase_09 AC 131 ms
40,960 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 -
testcase_20 WA -
権限があれば一括ダウンロードができます

ソースコード

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 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;
                even += as[i];
            }else{
                as[i] += i * even;
                odd += as[i];
            }
        }
        
        System.out.println(as[n] % 1000000007);
    }
}
0