結果
問題 | No.2381 Gift Exchange Party |
ユーザー | YTOK |
提出日時 | 2023-07-14 23:17:35 |
言語 | Julia (1.10.2) |
結果 |
WA
|
実行時間 | - |
コード長 | 692 bytes |
コンパイル時間 | 334 ms |
コンパイル使用メモリ | 7,200 KB |
実行使用メモリ | 474,152 KB |
最終ジャッジ日時 | 2024-10-01 17:27:58 |
合計ジャッジ時間 | 9,458 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 461 ms
256,276 KB |
testcase_01 | AC | 456 ms
254,692 KB |
testcase_02 | WA | - |
testcase_03 | TLE | - |
testcase_04 | TLE | - |
testcase_05 | TLE | - |
testcase_06 | WA | - |
testcase_07 | TLE | - |
testcase_08 | TLE | - |
testcase_09 | TLE | - |
testcase_10 | TLE | - |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | WA | - |
testcase_19 | WA | - |
testcase_20 | AC | 630 ms
257,976 KB |
testcase_21 | TLE | - |
testcase_22 | AC | 625 ms
256,752 KB |
testcase_23 | AC | 631 ms
253,900 KB |
testcase_24 | WA | - |
ソースコード
toI(s=readline()) = parse(Int,s) toVI(s=readline()) = toI.(split(s)) const MOD = 998244353 ⊕(x,y) = mod(x+y,MOD) ⊖(x,y) = mod(x-y,MOD) ⊗(x,y) = mod(x*y,MOD) ⊘(x,y) = x⊗invmod(y,MOD) ↑(x,y) = powermod(x,y,MOD) function main() n,p = toVI() solve(n,p) |> println end function solve(n,p) d,r = divrem(n,p) cnt = factmod(n) for d in 0:n÷p r = n - d*p cnt = cnt ⊖ combmod(n,r)⊗factmod(d*p)⊘factmod(p)↑d⊘factmod(d)⊗(factmod(p)-1)↑d end cnt end @generated function factmod(n) xs = zeros(Int,200001) xs[1] = 1 for i in 1:200000 xs[i+1] = xs[i]⊗i end return :($xs[n+1]) end function combmod(n,r) factmod(n)⊘(factmod(r)⊗factmod(n-r)) end main()