結果

問題 No.2048 L(I+D)S
ユーザー vjudge1vjudge1
提出日時 2024-12-30 13:40:12
言語 C++17
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 8 ms / 2,000 ms
コード長 1,027 bytes
コンパイル時間 2,376 ms
コンパイル使用メモリ 200,204 KB
実行使用メモリ 5,888 KB
最終ジャッジ日時 2024-12-30 13:40:16
合計ジャッジ時間 3,296 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 8 ms
5,888 KB
testcase_01 AC 7 ms
5,888 KB
testcase_02 AC 6 ms
5,760 KB
testcase_03 AC 7 ms
5,888 KB
testcase_04 AC 6 ms
5,888 KB
testcase_05 AC 7 ms
5,888 KB
testcase_06 AC 6 ms
5,760 KB
testcase_07 AC 7 ms
5,888 KB
testcase_08 AC 7 ms
5,888 KB
testcase_09 AC 7 ms
5,888 KB
testcase_10 AC 6 ms
5,888 KB
testcase_11 AC 8 ms
5,888 KB
testcase_12 AC 7 ms
5,760 KB
testcase_13 AC 6 ms
5,888 KB
testcase_14 AC 6 ms
5,888 KB
testcase_15 AC 7 ms
5,760 KB
testcase_16 AC 8 ms
5,760 KB
testcase_17 AC 7 ms
5,760 KB
testcase_18 AC 7 ms
5,760 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
#define int long long

#define F(i, a, b) for (int i = (a); i <= (b); i++)
#define dF(i, a, b) for (int i = (a); i >= (b); i--)
using namespace std;

typedef long long ll;
typedef pair<int, int> pii;

const int N = 200005, M = (N << 1), inf = 1e16, mod = 998244353;
int n, fac[N], ifc[N], inv[N];
signed main() {
    ios_base::sync_with_stdio(0);
    cin.tie(0), cout.tie(0);
    fac[0] = ifc[0] = inv[0] = fac[1] = ifc[1] = inv[1] = 1;
    const int maxn = 100000;
    for (int i = 2; i <= maxn; ++i) {
        fac[i] = 1ll * fac[i - 1] * i % mod;
        inv[i] = 1ll * inv[mod % i] * (mod - mod / i) % mod;
        ifc[i] = 1ll * ifc[i - 1] * inv[i] % mod;
    }
    cin >> n;
    int ans = 0;
    F(i, 2, n - 2) {
        int x = fac[n] * inv[n - 1] % mod * inv[i] % mod * inv[n - i] % mod;
        x = x * ifc[i - 2] % mod * ifc[n - i - 2] % mod;
        ans = (ans + x * x % mod) % mod;
    }
    cout << ans << endl;
    return 0;
}

// g++ a.cpp -o a -O2 -std=c++14 -fsanitize=undefined,address
0