結果
| 問題 |
No.2141 Enumeratest
|
| コンテスト | |
| ユーザー |
👑 |
| 提出日時 | 2023-04-27 23:45:03 |
| 言語 | Lua (LuaJit 2.1.1734355927) |
| 結果 |
AC
|
| 実行時間 | 135 ms / 2,000 ms |
| コード長 | 1,293 bytes |
| コンパイル時間 | 202 ms |
| コンパイル使用メモリ | 5,248 KB |
| 実行使用メモリ | 27,392 KB |
| 最終ジャッジ日時 | 2024-11-17 03:48:43 |
| 合計ジャッジ時間 | 6,225 ms |
|
ジャッジサーバーID (参考情報) |
judge2 / judge1 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 3 |
| other | AC * 34 |
ソースコード
local mod = 998244353
local mfl = math.floor
local function bmul(x, y)
local x0, y0 = x % 31596, y % 31596
local x1, y1 = mfl(x / 31596), mfl(y / 31596)
return (x1 * y1 * 62863 + (x1 * y0 + x0 * y1) * 31596 + x0 * y0) % mod
end
local function badd(x, y)
return (x + y) % mod
end
local function bsub(x, y)
return x < y and x - y + mod or x - y
end
local function modpow(src, pow)
local res = 1
while 0 < pow do
if pow % 2 == 1 then
res = bmul(res, src)
pow = pow - 1
end
src = bmul(src, src)
pow = mfl(pow / 2)
end
return res
end
local function modinv(src)
return modpow(src, mod - 2)
end
local fact = {1}
local invs = {1}
local invfact = {1}
for i = 2, 1000020 do
fact[i] = bmul(fact[i - 1], i)
invs[i] = bmul(mfl(mod / i), mod - invs[mod % i])
invfact[i] = bmul(invfact[i - 1], invs[i])
end
local function getComb(n, k)
if k == 0 or k == n then return 1 end
return bmul(fact[n], bmul(invfact[k], invfact[n - k]))
end
local n, m = io.read("*n", "*n")
local a = mfl(m / n)
local b = m - n * a
local ans = fact[m]
local denom = 1
if b == 0 then
denom = modpow(fact[a], n)
else
denom = modpow(fact[a + 1], b)
if 0 < a then
denom = bmul(denom, modpow(fact[a], n - b))
end
end
ans = bmul(ans, modinv(denom))
print(ans)