結果

問題 No.2141 Enumeratest
ユーザー 👑 CleyLCleyL
提出日時 2022-12-21 18:29:11
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 51 ms / 2,000 ms
コード長 591 bytes
コンパイル時間 787 ms
コンパイル使用メモリ 68,556 KB
実行使用メモリ 31,004 KB
最終ジャッジ日時 2024-11-18 02:56:15
合計ジャッジ時間 2,785 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 3 ms
7,496 KB
testcase_01 AC 3 ms
7,620 KB
testcase_02 AC 10 ms
12,868 KB
testcase_03 AC 40 ms
30,524 KB
testcase_04 AC 51 ms
31,004 KB
testcase_05 AC 8 ms
7,496 KB
testcase_06 AC 3 ms
7,500 KB
testcase_07 AC 5 ms
8,136 KB
testcase_08 AC 14 ms
16,160 KB
testcase_09 AC 10 ms
14,236 KB
testcase_10 AC 21 ms
20,340 KB
testcase_11 AC 40 ms
28,616 KB
testcase_12 AC 4 ms
7,876 KB
testcase_13 AC 9 ms
12,116 KB
testcase_14 AC 41 ms
29,220 KB
testcase_15 AC 19 ms
20,044 KB
testcase_16 AC 23 ms
23,536 KB
testcase_17 AC 25 ms
21,016 KB
testcase_18 AC 14 ms
14,676 KB
testcase_19 AC 34 ms
24,480 KB
testcase_20 AC 19 ms
18,176 KB
testcase_21 AC 19 ms
17,844 KB
testcase_22 AC 13 ms
14,308 KB
testcase_23 AC 11 ms
12,160 KB
testcase_24 AC 44 ms
30,828 KB
testcase_25 AC 12 ms
15,644 KB
testcase_26 AC 8 ms
7,752 KB
testcase_27 AC 16 ms
16,092 KB
testcase_28 AC 16 ms
14,808 KB
testcase_29 AC 11 ms
11,748 KB
testcase_30 AC 30 ms
24,100 KB
testcase_31 AC 21 ms
17,968 KB
testcase_32 AC 28 ms
23,568 KB
testcase_33 AC 17 ms
16,868 KB
testcase_34 AC 31 ms
26,140 KB
testcase_35 AC 4 ms
9,836 KB
testcase_36 AC 18 ms
16,628 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>


using namespace std;

const long long mod = 998244353;

long long fac[2000000];
long long inv[2000000];
long long finv[2000000];
void init(int n){
  fac[0] = fac[1] = 1;
  inv[1] = 1;
  finv[0] = finv[1] = 1;
  for(long long i = 2; n >= i; i++){
    fac[i] = (i*fac[i-1])%mod;
    inv[i] = ((mod-inv[mod%i]) * (mod/i))%mod;
    finv[i] = (finv[i-1]*inv[i])%mod;
  }
}


int main(){
  long long n,m;cin>>n>>m;
  init(m);
  long long ans = fac[m];
  for(int i = 0; n > i; i++){
    long long nw = m/n+((m%n)>i);
    ans = (ans*finv[nw])%mod;
  }
  cout << ans << endl;
}
0