結果

問題 No.2141 Enumeratest
ユーザー sasa8uyauyasasa8uyauya
提出日時 2024-11-25 14:25:12
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 735 ms / 2,000 ms
コード長 317 bytes
コンパイル時間 268 ms
コンパイル使用メモリ 82,436 KB
実行使用メモリ 249,084 KB
最終ジャッジ日時 2024-11-25 14:25:43
合計ジャッジ時間 27,736 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 684 ms
249,076 KB
testcase_01 AC 713 ms
248,624 KB
testcase_02 AC 674 ms
248,736 KB
testcase_03 AC 686 ms
249,080 KB
testcase_04 AC 679 ms
248,720 KB
testcase_05 AC 696 ms
248,748 KB
testcase_06 AC 708 ms
248,748 KB
testcase_07 AC 686 ms
248,508 KB
testcase_08 AC 691 ms
248,648 KB
testcase_09 AC 671 ms
248,732 KB
testcase_10 AC 692 ms
248,628 KB
testcase_11 AC 651 ms
248,804 KB
testcase_12 AC 695 ms
248,800 KB
testcase_13 AC 663 ms
248,736 KB
testcase_14 AC 690 ms
248,524 KB
testcase_15 AC 690 ms
248,800 KB
testcase_16 AC 670 ms
248,720 KB
testcase_17 AC 697 ms
248,496 KB
testcase_18 AC 667 ms
249,000 KB
testcase_19 AC 721 ms
248,520 KB
testcase_20 AC 669 ms
248,776 KB
testcase_21 AC 693 ms
248,720 KB
testcase_22 AC 646 ms
248,772 KB
testcase_23 AC 680 ms
248,504 KB
testcase_24 AC 691 ms
249,084 KB
testcase_25 AC 710 ms
248,872 KB
testcase_26 AC 684 ms
248,836 KB
testcase_27 AC 700 ms
248,720 KB
testcase_28 AC 696 ms
248,648 KB
testcase_29 AC 700 ms
248,776 KB
testcase_30 AC 715 ms
248,936 KB
testcase_31 AC 691 ms
248,708 KB
testcase_32 AC 735 ms
248,520 KB
testcase_33 AC 734 ms
248,632 KB
testcase_34 AC 686 ms
248,524 KB
testcase_35 AC 728 ms
248,660 KB
testcase_36 AC 686 ms
248,888 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n,m=map(int,input().split())
M=998244353
fa=[1,1]
fb=[1,1]
for i in range(2,2*10**6+1):
  fa+=[fa[-1]*i%M]
  fb+=[fb[-1]*(M//i)*fb[M%i]*fa[M%i-1]*(-1)%M]
fc=lambda n,k:fa[n]*fb[k]*fb[n-k]%M if n>=k>=0 else 0
a=fa[m]
for i in range(n):
  a*=fb[m//n]
  a%=M
for i in range(m%n):
  a*=fa[m//n]*fb[m//n+1]
  a%=M
print(a)
0