結果

問題 No.2141 Enumeratest
ユーザー shobonvipshobonvip
提出日時 2022-12-02 21:32:43
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 67 ms / 2,000 ms
コード長 486 bytes
コンパイル時間 361 ms
コンパイル使用メモリ 82,168 KB
実行使用メモリ 75,512 KB
最終ジャッジ日時 2024-10-09 22:37:56
合計ジャッジ時間 3,868 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 64 ms
73,856 KB
testcase_01 AC 67 ms
73,984 KB
testcase_02 AC 63 ms
73,984 KB
testcase_03 AC 64 ms
74,112 KB
testcase_04 AC 66 ms
73,856 KB
testcase_05 AC 64 ms
73,984 KB
testcase_06 AC 65 ms
74,112 KB
testcase_07 AC 63 ms
73,728 KB
testcase_08 AC 63 ms
74,112 KB
testcase_09 AC 64 ms
73,728 KB
testcase_10 AC 65 ms
73,984 KB
testcase_11 AC 64 ms
73,856 KB
testcase_12 AC 64 ms
73,728 KB
testcase_13 AC 64 ms
73,728 KB
testcase_14 AC 64 ms
73,856 KB
testcase_15 AC 66 ms
73,984 KB
testcase_16 AC 63 ms
73,984 KB
testcase_17 AC 64 ms
74,804 KB
testcase_18 AC 64 ms
74,344 KB
testcase_19 AC 65 ms
74,412 KB
testcase_20 AC 64 ms
75,152 KB
testcase_21 AC 65 ms
74,488 KB
testcase_22 AC 64 ms
74,604 KB
testcase_23 AC 63 ms
74,984 KB
testcase_24 AC 64 ms
74,816 KB
testcase_25 AC 64 ms
74,436 KB
testcase_26 AC 65 ms
73,980 KB
testcase_27 AC 65 ms
74,984 KB
testcase_28 AC 64 ms
74,532 KB
testcase_29 AC 63 ms
75,512 KB
testcase_30 AC 64 ms
74,940 KB
testcase_31 AC 63 ms
74,892 KB
testcase_32 AC 64 ms
74,760 KB
testcase_33 AC 65 ms
74,152 KB
testcase_34 AC 64 ms
74,376 KB
testcase_35 AC 64 ms
74,428 KB
testcase_36 AC 63 ms
75,120 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

mod = 998244353
N = 10**6 + 5
fact = [1]*(N+1)
factinv = [1]*(N+1)

for i in range(2, N+1):
	fact[i] = fact[i-1] * i % mod

factinv[-1] = pow(fact[-1], mod-2, mod)
for i in range(N-1, 1, -1):
	factinv[i] = factinv[i+1] * (i+1) % mod

def cmb(a, b):
	if (a < b) or (b < 0):
		return 0
	return fact[a] * factinv[b] % mod * factinv[a-b] % mod


n,m = map(int,input().split())
f = factinv[m // n]
g = factinv[m // n + 1]
l = m % n
print(pow(f, n - l, mod) * pow(g, l, mod) * fact[m] % mod)
0