結果

問題 No.2048 L(I+D)S
ユーザー miiemiie
提出日時 2024-11-05 22:26:15
言語 C++23
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 72 ms / 2,000 ms
コード長 462 bytes
コンパイル時間 3,310 ms
コンパイル使用メモリ 250,232 KB
実行使用メモリ 6,824 KB
最終ジャッジ日時 2024-11-05 22:26:48
合計ジャッジ時間 4,435 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,820 KB
testcase_01 AC 2 ms
6,820 KB
testcase_02 AC 3 ms
6,816 KB
testcase_03 AC 2 ms
6,816 KB
testcase_04 AC 2 ms
6,816 KB
testcase_05 AC 2 ms
6,820 KB
testcase_06 AC 2 ms
6,816 KB
testcase_07 AC 2 ms
6,816 KB
testcase_08 AC 60 ms
6,824 KB
testcase_09 AC 24 ms
6,816 KB
testcase_10 AC 18 ms
6,816 KB
testcase_11 AC 68 ms
6,816 KB
testcase_12 AC 37 ms
6,816 KB
testcase_13 AC 21 ms
6,816 KB
testcase_14 AC 25 ms
6,820 KB
testcase_15 AC 10 ms
6,820 KB
testcase_16 AC 69 ms
6,816 KB
testcase_17 AC 72 ms
6,820 KB
testcase_18 AC 72 ms
6,820 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>
#include<atcoder/modint>
using namespace std;
using mint = atcoder::modint998244353;
int main(){
  int n;
  cin >> n;
  vector<mint> fact(n+1, 1);
  for(int i=0; i<n; i++){
    fact[i+1] = fact[i]*(i+1);
  }
  mint ans = 0;
  for(int a=2; a<=n-2; a++){
    int b = n-a;
    mint add = fact[n];
    add /= fact[b-2];
    add /= fact[a-2];
    add /= b;
    add /= a;
    add /= a+b-1;
    ans += add*add;
  }
  cout << ans.val() << endl;
}
0