結果

問題 No.554 recurrence formula
ユーザー kusagame12kusagame12
提出日時 2024-06-16 18:49:12
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 611 bytes
コンパイル時間 4,367 ms
コンパイル使用メモリ 83,472 KB
実行使用メモリ 42,336 KB
最終ジャッジ日時 2024-06-16 18:49:22
合計ジャッジ時間 9,196 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 131 ms
41,212 KB
testcase_01 AC 131 ms
41,308 KB
testcase_02 AC 130 ms
41,396 KB
testcase_03 AC 133 ms
41,268 KB
testcase_04 AC 134 ms
41,380 KB
testcase_05 AC 136 ms
41,324 KB
testcase_06 AC 131 ms
41,044 KB
testcase_07 AC 132 ms
41,316 KB
testcase_08 AC 133 ms
41,252 KB
testcase_09 AC 135 ms
41,436 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]);
    }
}
0