結果

問題 No.2048 L(I+D)S
ユーザー vjudge1vjudge1
提出日時 2024-12-30 15:35:09
言語 C++14
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 6 ms / 2,000 ms
コード長 822 bytes
コンパイル時間 1,802 ms
コンパイル使用メモリ 167,032 KB
実行使用メモリ 5,248 KB
最終ジャッジ日時 2024-12-30 15:35:13
合計ジャッジ時間 2,425 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

#include <bits/stdc++.h>
#define M 998244353
using namespace std;
int add(int x, int y){x += y;return x >= M? x - M : x;}
int mul(int x, int y){return 1ll * x * y % M;}
int pw2(int x){return mul(x, x);}
template <typename... Args> int mul(int x, int y, int z, Args... arg){return mul(mul(x, y), z, arg...);}
int n, rs, fc[100010], iv[100010], ivfc[100010];
int main(){
    ios::sync_with_stdio(false), cin.tie(nullptr), cout.tie(nullptr);
    cin >> n;fc[0] = fc[1] = ivfc[0] = ivfc[1] = iv[1] = 1;
    for (int i = 2; i <= n; ++i)fc[i] = mul(fc[i - 1], i), iv[i] = mul(iv[M % i], M - M / i), ivfc[i] = mul(ivfc[i - 1], iv[i]);
    for (int A = 2, B = n - 2; B >= 2; ++A, --B)rs = add(rs, pw2(mul(fc[n], ivfc[A - 2], ivfc[B - 2], iv[A], iv[B], iv[n - 1])));
    cout << rs << endl; return 0;
}
/*
4 4
2 0
2143 634982576
*/
0