結果

問題 No.2141 Enumeratest
ユーザー first_vilfirst_vil
提出日時 2022-12-03 17:13:31
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 997 ms / 2,000 ms
コード長 203 bytes
コンパイル時間 377 ms
コンパイル使用メモリ 82,088 KB
実行使用メモリ 69,624 KB
最終ジャッジ日時 2024-10-10 19:43:20
合計ジャッジ時間 16,703 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,428 KB
testcase_01 AC 37 ms
51,744 KB
testcase_02 AC 81 ms
65,688 KB
testcase_03 AC 50 ms
65,840 KB
testcase_04 AC 997 ms
69,244 KB
testcase_05 AC 973 ms
60,112 KB
testcase_06 AC 37 ms
51,768 KB
testcase_07 AC 42 ms
58,860 KB
testcase_08 AC 45 ms
61,372 KB
testcase_09 AC 45 ms
60,388 KB
testcase_10 AC 48 ms
62,364 KB
testcase_11 AC 50 ms
65,288 KB
testcase_12 AC 41 ms
58,000 KB
testcase_13 AC 42 ms
60,764 KB
testcase_14 AC 50 ms
65,088 KB
testcase_15 AC 47 ms
63,476 KB
testcase_16 AC 49 ms
63,228 KB
testcase_17 AC 649 ms
68,208 KB
testcase_18 AC 812 ms
64,796 KB
testcase_19 AC 868 ms
69,116 KB
testcase_20 AC 714 ms
66,020 KB
testcase_21 AC 795 ms
65,352 KB
testcase_22 AC 585 ms
64,252 KB
testcase_23 AC 303 ms
64,476 KB
testcase_24 AC 246 ms
69,624 KB
testcase_25 AC 62 ms
64,828 KB
testcase_26 AC 896 ms
64,216 KB
testcase_27 AC 774 ms
66,176 KB
testcase_28 AC 956 ms
65,656 KB
testcase_29 AC 531 ms
64,708 KB
testcase_30 AC 897 ms
68,336 KB
testcase_31 AC 633 ms
65,992 KB
testcase_32 AC 706 ms
68,608 KB
testcase_33 AC 600 ms
67,160 KB
testcase_34 AC 570 ms
68,284 KB
testcase_35 AC 101 ms
62,696 KB
testcase_36 AC 910 ms
65,588 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

mod=998244353
n,m=map(int,input().split())
fac=[1]*(m+1)
for i in range(1,m+1):
    fac[i]=fac[i-1]*i%mod
ans=fac[m]
for i in range(n):
    a=m//n+(m%n>i)
    ans=ans*pow(fac[a],mod-2,mod)%mod
print(ans)
0