結果

問題 No.2141 Enumeratest
ユーザー aaaaaaaaaa2230aaaaaaaaaa2230
提出日時 2022-12-02 22:00:05
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 59 ms / 2,000 ms
コード長 335 bytes
コンパイル時間 203 ms
コンパイル使用メモリ 81,968 KB
実行使用メモリ 67,028 KB
最終ジャッジ日時 2024-10-09 23:16:19
合計ジャッジ時間 3,330 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 46 ms
53,084 KB
testcase_01 AC 45 ms
53,592 KB
testcase_02 AC 53 ms
61,484 KB
testcase_03 AC 56 ms
65,312 KB
testcase_04 AC 56 ms
66,576 KB
testcase_05 AC 44 ms
58,184 KB
testcase_06 AC 41 ms
52,444 KB
testcase_07 AC 44 ms
58,648 KB
testcase_08 AC 49 ms
61,572 KB
testcase_09 AC 50 ms
60,400 KB
testcase_10 AC 51 ms
62,856 KB
testcase_11 AC 53 ms
66,000 KB
testcase_12 AC 42 ms
59,528 KB
testcase_13 AC 45 ms
60,252 KB
testcase_14 AC 54 ms
65,336 KB
testcase_15 AC 51 ms
63,096 KB
testcase_16 AC 54 ms
63,636 KB
testcase_17 AC 57 ms
64,504 KB
testcase_18 AC 55 ms
62,920 KB
testcase_19 AC 56 ms
65,396 KB
testcase_20 AC 55 ms
63,316 KB
testcase_21 AC 55 ms
62,740 KB
testcase_22 AC 51 ms
62,416 KB
testcase_23 AC 54 ms
61,536 KB
testcase_24 AC 59 ms
67,028 KB
testcase_25 AC 50 ms
63,196 KB
testcase_26 AC 50 ms
59,964 KB
testcase_27 AC 55 ms
62,552 KB
testcase_28 AC 55 ms
62,984 KB
testcase_29 AC 51 ms
61,052 KB
testcase_30 AC 57 ms
66,364 KB
testcase_31 AC 57 ms
63,100 KB
testcase_32 AC 57 ms
65,620 KB
testcase_33 AC 56 ms
63,024 KB
testcase_34 AC 59 ms
66,816 KB
testcase_35 AC 47 ms
60,464 KB
testcase_36 AC 54 ms
62,740 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n,m = map(int,input().split())
mod = 998244353

facts = [1]*(m+2)
for i in range(2,m+1):
    facts[i] = facts[i-1]*i%mod
    
ans = facts[m]
# print(ans)
d,mo = divmod(m,n)
base = 1
for i in range(n):
    if i < mo:
        base *= facts[d+1]
    else:
        base *= facts[d]
    base %= mod
ans *= pow(base,mod-2,mod)
print(ans%mod)
0