結果

問題 No.554 recurrence formula
ユーザー OlderInvestorOlderInvestor
提出日時 2017-10-29 17:24:56
言語 Java21
(openjdk 21)
結果
AC  
実行時間 1,578 ms / 2,000 ms
コード長 981 bytes
コンパイル時間 3,385 ms
コンパイル使用メモリ 83,236 KB
実行使用メモリ 41,992 KB
最終ジャッジ日時 2024-11-22 05:20:43
合計ジャッジ時間 9,962 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 128 ms
41,348 KB
testcase_01 AC 129 ms
41,116 KB
testcase_02 AC 130 ms
41,404 KB
testcase_03 AC 116 ms
39,872 KB
testcase_04 AC 129 ms
41,500 KB
testcase_05 AC 127 ms
41,220 KB
testcase_06 AC 125 ms
41,408 KB
testcase_07 AC 129 ms
41,240 KB
testcase_08 AC 127 ms
41,244 KB
testcase_09 AC 127 ms
41,360 KB
testcase_10 AC 140 ms
41,036 KB
testcase_11 AC 141 ms
41,396 KB
testcase_12 AC 127 ms
40,968 KB
testcase_13 AC 145 ms
41,284 KB
testcase_14 AC 133 ms
40,940 KB
testcase_15 AC 149 ms
41,512 KB
testcase_16 AC 152 ms
41,320 KB
testcase_17 AC 145 ms
41,560 KB
testcase_18 AC 141 ms
41,400 KB
testcase_19 AC 1,570 ms
41,852 KB
testcase_20 AC 1,578 ms
41,992 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package yukicoder;

import java.util.Scanner;

public class No554 {
    private int n;
    private long[] a;
    private long sumtmp;

    public static void main(String[] args) {
        No554 main = new No554();
        main.run();
    }

    private void run() {
        Scanner sc = new Scanner(System.in);
        n = sc.nextInt();
        a = new long[n + 1];

        a[1] = 1;
        for(int i = 2; i < a.length; i++) {
            if(i % 2 == 1) {
                //a[i] = odd(i);
                sumtmp = 0;
                for(int j = 2; j < i; j += 2) {
                    sumtmp += a[j];
                }
                a[i] = i * sumtmp % 1000000007;
            } else {
                //a[i] = even(i);
                sumtmp = 0;
                for(int j = 1; j < i; j += 2) {
                    sumtmp += a[j];
                }
                a[i] = i * sumtmp % 1000000007;
            }
        }
        System.out.println(a[n] % 1000000007);
    }
}
0