結果

問題 No.8048 Order and Harmony
ユーザー hitonanodehitonanode
提出日時 2019-04-01 22:06:52
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
TLE  
実行時間 -
コード長 1,267 bytes
コンパイル時間 1,610 ms
コンパイル使用メモリ 167,248 KB
実行使用メモリ 10,496 KB
最終ジャッジ日時 2024-11-27 02:58:30
合計ジャッジ時間 63,635 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
10,496 KB
testcase_01 AC 2 ms
8,448 KB
testcase_02 AC 3 ms
10,496 KB
testcase_03 AC 627 ms
8,320 KB
testcase_04 AC 2 ms
10,496 KB
testcase_05 AC 2 ms
8,448 KB
testcase_06 AC 2 ms
10,496 KB
testcase_07 AC 2 ms
8,448 KB
testcase_08 AC 2 ms
10,496 KB
testcase_09 AC 2 ms
8,448 KB
testcase_10 AC 3 ms
10,496 KB
testcase_11 AC 2 ms
8,320 KB
testcase_12 AC 2 ms
10,496 KB
testcase_13 AC 2 ms
8,448 KB
testcase_14 AC 2 ms
9,888 KB
testcase_15 AC 2 ms
8,448 KB
testcase_16 AC 2 ms
8,192 KB
testcase_17 AC 2 ms
9,892 KB
testcase_18 AC 2 ms
10,496 KB
testcase_19 AC 2 ms
8,320 KB
testcase_20 AC 2 ms
10,496 KB
testcase_21 AC 2 ms
8,320 KB
testcase_22 AC 2 ms
10,496 KB
testcase_23 AC 2 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 2 ms
8,320 KB
testcase_30 TLE -
testcase_31 AC 2 ms
5,248 KB
testcase_32 AC 408 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 TLE -
testcase_38 AC 12 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 13 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 430 ms
5,248 KB
testcase_54 AC 2 ms
5,248 KB
testcase_55 AC 2 ms
5,248 KB
testcase_56 AC 1,511 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,864 ms
5,248 KB
testcase_61 TLE -
testcase_62 AC 343 ms
5,248 KB
testcase_63 AC 2 ms
5,248 KB
testcase_64 TLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
using lint = long long int;
struct fast_ios { fast_ios(){ cin.tie(0); ios::sync_with_stdio(false); cout << fixed << setprecision(20); }; } fast_ios_;
#define FOR(i, begin, end) for(int i=(begin),i##_end_=(end);i<i##_end_;i++)
#define REP(i, n) FOR(i,0,n)
#define dbg(x) cerr << #x << " = " << (x) << " (L" << __LINE__ << ") " << __FILE__ << endl;
#define FI first
#define SE second
#define ALL(x) (x).begin(), (x).end()
#define SZ(x) ((lint)(x).size())
#define POW2(n) (1LL << (n))

lint K;
constexpr lint MOD = 1000000007;
// Solve ax+by=gcd(a, b)
lint extgcd(lint a, lint b, lint &x, lint &y)
{
    lint d = a;
    if (b != 0) d = extgcd(b, a % b, y, x), y -= (a / b) * x;
    else x = 1, y = 0;
    return d;
}
// Calc a^(-1) (MOD m)
lint mod_inverse(lint a, lint m)
{
    lint x, y;
    extgcd(a, m, x, y);
    return (m + x % m) % m;
}

int main()
{
    cin >> K;
    lint ans, ans2;
    if (K % 2) cout << 0 << endl;
    else
    {
        ans = 1;
        REP(i, K / 2) ans = (ans * (i + 1)) % MOD;
        ans2 = ans;
        REP(i, K / 2) ans = (ans * (i + 1 + K / 2)) % MOD;
        dbg(ans2);
        dbg(ans);
        cout << mod_inverse(ans2, MOD) * mod_inverse(ans2, MOD) % MOD * ans % MOD << endl;
    }
}
0