結果
問題 | No.2409 Strange Werewolves |
ユーザー |
👑 |
提出日時 | 2023-08-11 21:36:48 |
言語 | Lua (LuaJit 2.1.1734355927) |
結果 |
AC
|
実行時間 | 15 ms / 2,000 ms |
コード長 | 960 bytes |
コンパイル時間 | 49 ms |
コンパイル使用メモリ | 6,820 KB |
実行使用メモリ | 6,820 KB |
最終ジャッジ日時 | 2024-11-18 15:34:55 |
合計ジャッジ時間 | 814 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge5 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 2 |
other | AC * 16 |
ソースコード
local mod = 998244353local mfl = math.floorlocal function bmul(x, y)local x0, y0 = x % 31596, y % 31596local x1, y1 = mfl(x / 31596), mfl(y / 31596)return (x1 * y1 * 62863 + (x1 * y0 + x0 * y1) * 31596 + x0 * y0) % modendlocal function modpow(src, pow)local res = 1while 0 < pow doif pow % 2 == 1 thenres = bmul(res, src)pow = pow - 1endsrc = bmul(src, src)pow = mfl(pow / 2)endreturn resendlocal function modinv(src)return modpow(src, mod - 2)endlocal function getComb(n, k)local ret = 1local inv = 1for i = 1, k doret = bmul(ret, n + 1 - i)inv = bmul(inv, i)endreturn bmul(ret, modinv(inv))endlocal x, y = io.read("*n", "*n")local z, w = io.read("*n", "*n")if z == 0 thenx, y = y, xz, w = w, zendlocal fact = 1for i = 2, x - z + y - 1 dofact = (fact * i) % modendlocal ans = (fact * y) % modlocal c = getComb(x, z)ans = bmul(ans, c)print(ans)