結果

問題 No.2048 L(I+D)S
ユーザー vjudge1vjudge1
提出日時 2024-12-28 10:32:07
言語 C++14
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 7 ms / 2,000 ms
コード長 615 bytes
コンパイル時間 2,204 ms
コンパイル使用メモリ 166,564 KB
実行使用メモリ 5,760 KB
最終ジャッジ日時 2024-12-28 10:32:11
合計ジャッジ時間 2,952 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

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

const int N = 1e6 + 10,p = 998244353;
ll n,s,ans,fc[N],iv[N],inv[N];

ll sqr(ll x){return x * x % p;}

int main()
{
    // freopen("input.in","r",stdin);
    cin >> n;
    fc[0] = fc[1] = iv[0] = iv[1] = inv[0] = inv[1] = 1;
    for(int i = 2;i <= n;i++) fc[i] = fc[i - 1] * i % p,iv[i] = iv[p % i] * (p - p / i) % p,inv[i]= inv[i - 1] * iv[i] % p;
    for(int i = 2;i <= n - 2;i++) ans += sqr(fc[n] * inv[i - 2] % p * inv[n - i - 2] % p * iv[i] % p * iv[n - i] % p * iv[n - 1] % p),ans >= p ? ans -= p : 0;
    cout << ans << '\n';
    return 0;
}
0