結果

問題 No.8048 Order and Harmony
ユーザー betrue12betrue12
提出日時 2019-04-01 21:50:54
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
TLE  
実行時間 -
コード長 715 bytes
コンパイル時間 1,414 ms
コンパイル使用メモリ 166,416 KB
実行使用メモリ 10,496 KB
最終ジャッジ日時 2024-11-26 22:26:40
合計ジャッジ時間 61,827 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
10,496 KB
testcase_01 AC 2 ms
8,576 KB
testcase_02 AC 2 ms
10,148 KB
testcase_03 AC 563 ms
8,576 KB
testcase_04 AC 2 ms
10,496 KB
testcase_05 AC 2 ms
8,576 KB
testcase_06 AC 2 ms
10,496 KB
testcase_07 AC 2 ms
8,576 KB
testcase_08 AC 2 ms
10,496 KB
testcase_09 AC 2 ms
8,576 KB
testcase_10 AC 1 ms
10,496 KB
testcase_11 AC 2 ms
8,448 KB
testcase_12 AC 1 ms
8,576 KB
testcase_13 AC 1 ms
10,020 KB
testcase_14 AC 1 ms
10,496 KB
testcase_15 AC 2 ms
8,576 KB
testcase_16 AC 1 ms
10,020 KB
testcase_17 AC 2 ms
8,576 KB
testcase_18 AC 2 ms
10,496 KB
testcase_19 AC 2 ms
8,576 KB
testcase_20 AC 2 ms
10,496 KB
testcase_21 AC 2 ms
8,576 KB
testcase_22 AC 2 ms
10,496 KB
testcase_23 AC 1 ms
8,448 KB
testcase_24 AC 2 ms
10,496 KB
testcase_25 TLE -
testcase_26 TLE -
testcase_27 TLE -
testcase_28 TLE -
testcase_29 AC 1 ms
5,248 KB
testcase_30 TLE -
testcase_31 AC 2 ms
5,248 KB
testcase_32 AC 366 ms
5,248 KB
testcase_33 AC 2 ms
5,248 KB
testcase_34 TLE -
testcase_35 AC 2 ms
5,248 KB
testcase_36 TLE -
testcase_37 AC 1,884 ms
5,248 KB
testcase_38 AC 10 ms
5,248 KB
testcase_39 TLE -
testcase_40 TLE -
testcase_41 TLE -
testcase_42 TLE -
testcase_43 AC 2 ms
5,248 KB
testcase_44 TLE -
testcase_45 AC 12 ms
5,248 KB
testcase_46 TLE -
testcase_47 TLE -
testcase_48 TLE -
testcase_49 AC 2 ms
5,248 KB
testcase_50 TLE -
testcase_51 AC 2 ms
5,248 KB
testcase_52 AC 2 ms
5,248 KB
testcase_53 AC 412 ms
5,248 KB
testcase_54 AC 2 ms
5,248 KB
testcase_55 AC 2 ms
5,248 KB
testcase_56 AC 1,362 ms
5,248 KB
testcase_57 AC 2 ms
5,248 KB
testcase_58 AC 2 ms
5,248 KB
testcase_59 AC 2 ms
5,248 KB
testcase_60 AC 1,712 ms
5,248 KB
testcase_61 TLE -
testcase_62 AC 311 ms
5,248 KB
testcase_63 AC 2 ms
5,248 KB
testcase_64 TLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;

const int64_t MOD = 1e9+7;

int64_t extgcd(int64_t a, int64_t b, int64_t& x, int64_t& y){
    int64_t d = a;
    if(b != 0){
        d = extgcd(b, a%b, y, x);
        y -= (a/b) * x;
    }else{
        x = 1; y = 0;
    }
    return d;
}

int64_t inv_mod(int64_t a){
    int64_t x, y;
    extgcd(a, MOD, x, y);
    return (MOD + x%MOD) % MOD;
}

int main(){
    int K;
    cin >> K;
    if(K%2){
        cout << 0 << endl;
        return 0;
    }

    int64_t ans = 1;
    for(int i=1; i<=K/2; i++){
        ans = ans * i % MOD;
    }
    ans = inv_mod(ans);
    for(int i=K/2+1; i<=K; i++){
        ans = ans * i % MOD;
    }
    cout << ans << endl;
    return 0;
}
0