結果
問題 | No.2141 Enumeratest |
ユーザー | 👑 obakyan |
提出日時 | 2023-04-27 23:40:51 |
言語 | Lua (LuaJit 2.1.1696795921) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,194 bytes |
コンパイル時間 | 167 ms |
コンパイル使用メモリ | 5,248 KB |
実行使用メモリ | 27,520 KB |
最終ジャッジ日時 | 2024-11-17 03:46:40 |
合計ジャッジ時間 | 6,654 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 144 ms
27,392 KB |
testcase_01 | AC | 136 ms
27,392 KB |
testcase_02 | AC | 134 ms
27,392 KB |
testcase_03 | WA | - |
testcase_04 | AC | 142 ms
27,264 KB |
testcase_05 | RE | - |
testcase_06 | AC | 137 ms
27,392 KB |
testcase_07 | AC | 134 ms
27,392 KB |
testcase_08 | AC | 138 ms
27,392 KB |
testcase_09 | AC | 135 ms
27,264 KB |
testcase_10 | AC | 138 ms
27,392 KB |
testcase_11 | AC | 135 ms
27,392 KB |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | AC | 138 ms
27,392 KB |
testcase_15 | AC | 137 ms
27,392 KB |
testcase_16 | AC | 140 ms
27,264 KB |
testcase_17 | RE | - |
testcase_18 | RE | - |
testcase_19 | RE | - |
testcase_20 | RE | - |
testcase_21 | RE | - |
testcase_22 | RE | - |
testcase_23 | RE | - |
testcase_24 | AC | 133 ms
27,392 KB |
testcase_25 | AC | 134 ms
27,264 KB |
testcase_26 | RE | - |
testcase_27 | RE | - |
testcase_28 | RE | - |
testcase_29 | RE | - |
testcase_30 | RE | - |
testcase_31 | RE | - |
testcase_32 | RE | - |
testcase_33 | RE | - |
testcase_34 | AC | 137 ms
27,392 KB |
testcase_35 | RE | - |
testcase_36 | RE | - |
ソースコード
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 = bmul(modpow(fact[a + 1], b), modpow(fact[a], (n - b) % n)) ans = bmul(ans, modinv(denom)) print(ans)