結果
問題 | No.2381 Gift Exchange Party |
ユーザー | kakel-san |
提出日時 | 2023-07-15 17:06:24 |
言語 | C#(csc) (csc 3.9.0) |
結果 |
AC
|
実行時間 | 273 ms / 2,000 ms |
コード長 | 2,622 bytes |
コンパイル時間 | 2,498 ms |
コンパイル使用メモリ | 113,872 KB |
実行使用メモリ | 19,840 KB |
最終ジャッジ日時 | 2024-09-17 01:59:24 |
合計ジャッジ時間 | 4,860 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge6 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 28 ms
18,944 KB |
testcase_01 | AC | 28 ms
18,944 KB |
testcase_02 | AC | 31 ms
18,968 KB |
testcase_03 | AC | 29 ms
18,988 KB |
testcase_04 | AC | 32 ms
18,816 KB |
testcase_05 | AC | 35 ms
19,584 KB |
testcase_06 | AC | 31 ms
18,976 KB |
testcase_07 | AC | 31 ms
18,972 KB |
testcase_08 | AC | 34 ms
19,584 KB |
testcase_09 | AC | 28 ms
19,072 KB |
testcase_10 | AC | 31 ms
18,848 KB |
testcase_11 | AC | 33 ms
19,072 KB |
testcase_12 | AC | 28 ms
18,536 KB |
testcase_13 | AC | 31 ms
18,968 KB |
testcase_14 | AC | 35 ms
19,328 KB |
testcase_15 | AC | 31 ms
18,976 KB |
testcase_16 | AC | 31 ms
18,840 KB |
testcase_17 | AC | 35 ms
19,200 KB |
testcase_18 | AC | 32 ms
18,968 KB |
testcase_19 | AC | 32 ms
18,964 KB |
testcase_20 | AC | 269 ms
19,712 KB |
testcase_21 | AC | 36 ms
19,840 KB |
testcase_22 | AC | 273 ms
19,584 KB |
testcase_23 | AC | 273 ms
19,840 KB |
testcase_24 | AC | 31 ms
18,844 KB |
コンパイルメッセージ
Microsoft (R) Visual C# Compiler version 3.9.0-6.21124.20 (db94f4cc) Copyright (C) Microsoft Corporation. All rights reserved.
ソースコード
using System; using static System.Console; using System.Linq; using System.Collections.Generic; class Program { static int[] NList => ReadLine().Split().Select(int.Parse).ToArray(); static long[] LList => ReadLine().Split().Select(long.Parse).ToArray(); public static void Main() { Solve(); } static void Solve() { var c = NList; var (n, p) = (c[0], c[1]); WriteLine(Gift(n, p)); } static long Gift(int n, int p) { var mod = 998_244_353; var ncr = new NCR(n, mod); var rest = 1L; for (var i = 1; (long)p * i <= n; ++i) { var par = ncr.Fact(i) * ncr.Exp(p, i) % mod; rest = (rest + ncr.Calc(n, p * i) * ncr.Fact(p * i) % mod * ncr.Exp(par, mod - 2) % mod) % mod; } return (ncr.Fact(n) + mod - rest) % mod; } class NCR { int[] facts; int[] revFacts; int mod; public NCR(int n, int mod) { facts = new int[n + 1]; revFacts = new int[n + 1]; this.mod = mod; facts[0] = 1; var tmp = 1L; for (var i = 1; i <= n; ++i) { tmp = (tmp * i) % mod; facts[i] = (int)tmp; } tmp = Exp(facts[n], mod - 2); revFacts[n] = (int)tmp; for (var i = n; i > 1; --i) { tmp = (tmp * i) % mod; revFacts[i - 1] = (int)tmp; } revFacts[0] = 1; } public long Exp(long n, long k) { n = n % mod; if (k == 0) return 1; if (k == 1) return n; var half = Exp(n, k / 2); var result = (half * half) % mod; return ((k % 2) == 0) ? result : ((result * n) % mod); } public long Calc(int n, int r) { return (long)facts[n] * revFacts[r] % mod * revFacts[n - r] % mod; } public long Calc2(int n, int r) { var tmp = 1L; for (var i = 0; i < r; ++i) { tmp = tmp * (n - i) % mod; } return tmp * revFacts[r] % mod; } public long NPR(int n, int r) { return (long)facts[n] * revFacts[r] % mod; } public long Fact(int n) { return facts[n]; } public long RevFact(int n) { return revFacts[n]; } } }