結果
問題 | No.2527 H and W |
ユーザー | kakel-san |
提出日時 | 2023-11-03 22:04:37 |
言語 | C# (.NET 8.0.203) |
結果 |
AC
|
実行時間 | 106 ms / 2,000 ms |
コード長 | 2,843 bytes |
コンパイル時間 | 7,672 ms |
コンパイル使用メモリ | 167,516 KB |
実行使用メモリ | 193,116 KB |
最終ジャッジ日時 | 2024-09-25 20:25:45 |
合計ジャッジ時間 | 10,981 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 54 ms
30,080 KB |
testcase_01 | AC | 55 ms
30,336 KB |
testcase_02 | AC | 104 ms
38,592 KB |
testcase_03 | AC | 53 ms
30,180 KB |
testcase_04 | AC | 104 ms
38,580 KB |
testcase_05 | AC | 104 ms
38,656 KB |
testcase_06 | AC | 105 ms
38,744 KB |
testcase_07 | AC | 55 ms
29,952 KB |
testcase_08 | AC | 105 ms
38,592 KB |
testcase_09 | AC | 93 ms
38,656 KB |
testcase_10 | AC | 94 ms
38,528 KB |
testcase_11 | AC | 105 ms
38,476 KB |
testcase_12 | AC | 106 ms
38,492 KB |
testcase_13 | AC | 106 ms
38,236 KB |
testcase_14 | AC | 106 ms
38,900 KB |
testcase_15 | AC | 106 ms
38,488 KB |
testcase_16 | AC | 105 ms
38,236 KB |
testcase_17 | AC | 105 ms
38,620 KB |
testcase_18 | AC | 105 ms
38,724 KB |
testcase_19 | AC | 85 ms
35,224 KB |
testcase_20 | AC | 89 ms
35,712 KB |
testcase_21 | AC | 105 ms
38,744 KB |
testcase_22 | AC | 105 ms
38,752 KB |
testcase_23 | AC | 105 ms
38,624 KB |
testcase_24 | AC | 88 ms
35,340 KB |
testcase_25 | AC | 89 ms
193,116 KB |
コンパイルメッセージ
復元対象のプロジェクトを決定しています... /home/judge/data/code/main.csproj を復元しました (94 ms)。 MSBuild のバージョン 17.9.6+a4ecab324 (.NET) main -> /home/judge/data/code/bin/Release/net8.0/main.dll main -> /home/judge/data/code/bin/Release/net8.0/publish/
ソースコード
using System; using static System.Console; using System.Linq; using System.Collections.Generic; class Program { static int NN => int.Parse(ReadLine()); static long[] NList => ReadLine().Split().Select(long.Parse).ToArray(); public static void Main() { Solve(); } static void Solve() { var c = NList; var (h, w, k) = ((int)c[0], (int)c[1], c[2]); var mod = 998_244_353; var ncr = new NCR(Math.Max(h, w), mod); var ans = 0L; for (var i = 0L; i < h; ++i) { var bl = (h - i) * w; var move = h - i; // WriteLine($"{i} {bl} {k - bl} / {move}"); if ((bl - k) % move == 0) { var j = (bl - k) / move; // WriteLine(j); if (j >= 0 && j <= w) { ans = (ans + ncr.Calc(h, (int)i) * ncr.Calc(w, (int)j)) % mod; } } } WriteLine(ans); } 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; } /// <summary>nが大きくrが小さい場合の計算</summary> 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]; } } }