結果

問題 No.554 recurrence formula
ユーザー kohaku_kohakukohaku_kohaku
提出日時 2017-08-12 20:52:11
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 686 bytes
コンパイル時間 2,046 ms
コンパイル使用メモリ 74,180 KB
実行使用メモリ 53,712 KB
最終ジャッジ日時 2024-10-13 06:03:10
合計ジャッジ時間 5,458 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 117 ms
41,144 KB
testcase_02 AC 116 ms
41,360 KB
testcase_03 AC 107 ms
40,140 KB
testcase_04 AC 117 ms
41,160 KB
testcase_05 AC 120 ms
41,348 KB
testcase_06 AC 117 ms
41,396 KB
testcase_07 AC 118 ms
41,028 KB
testcase_08 AC 118 ms
41,396 KB
testcase_09 AC 117 ms
41,288 KB
testcase_10 AC 122 ms
41,584 KB
testcase_11 AC 119 ms
41,524 KB
testcase_12 AC 114 ms
40,912 KB
testcase_13 AC 117 ms
41,076 KB
testcase_14 AC 118 ms
41,304 KB
testcase_15 AC 116 ms
41,272 KB
testcase_16 AC 118 ms
41,592 KB
testcase_17 AC 125 ms
41,552 KB
testcase_18 AC 124 ms
41,272 KB
testcase_19 AC 125 ms
40,932 KB
testcase_20 AC 141 ms
41,148 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        int N = sc.nextInt();
        long mod = (long)(Math.pow(10,9))+7;
        long odd = 1;
        long even = 2;
        for(int i=3; i<N; i++){
            long tmp=0;
            if(i%2==0){
                tmp = odd*i;
                even += tmp;
                even %= mod;
            }else{
                tmp = even*i;
                odd += tmp;
                odd %= mod;
            }
        }
        if(N%2==0){
            System.out.println(odd*N%mod);
        }else{
            System.out.println(even*N%mod);
        }
    }
}
0