結果
問題 | No.2409 Strange Werewolves |
ユーザー | kakel-san |
提出日時 | 2023-08-11 21:53:17 |
言語 | C#(csc) (csc 3.9.0) |
結果 |
AC
|
実行時間 | 52 ms / 2,000 ms |
コード長 | 2,713 bytes |
コンパイル時間 | 1,491 ms |
コンパイル使用メモリ | 111,288 KB |
実行使用メモリ | 30,932 KB |
最終ジャッジ日時 | 2024-11-18 16:02:23 |
合計ジャッジ時間 | 2,909 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 29 ms
27,132 KB |
testcase_01 | AC | 29 ms
25,232 KB |
testcase_02 | AC | 28 ms
23,088 KB |
testcase_03 | AC | 52 ms
29,356 KB |
testcase_04 | AC | 51 ms
30,932 KB |
testcase_05 | AC | 41 ms
28,580 KB |
testcase_06 | AC | 51 ms
28,888 KB |
testcase_07 | AC | 52 ms
29,144 KB |
testcase_08 | AC | 41 ms
26,728 KB |
testcase_09 | AC | 43 ms
27,308 KB |
testcase_10 | AC | 35 ms
25,660 KB |
testcase_11 | AC | 30 ms
25,452 KB |
testcase_12 | AC | 35 ms
25,760 KB |
testcase_13 | AC | 42 ms
24,760 KB |
testcase_14 | AC | 45 ms
27,288 KB |
testcase_15 | AC | 42 ms
27,180 KB |
testcase_16 | AC | 41 ms
26,408 KB |
testcase_17 | AC | 31 ms
27,356 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 NN => int.Parse(ReadLine()); static int[] NList => ReadLine().Split().Select(int.Parse).ToArray(); static int[][] NArr(long n) => Enumerable.Repeat(0, (int)n).Select(_ => NList).ToArray(); public static void Main() { Solve(); } static void Solve() { var c = NList; var (x, y, z, w) = (c[0], c[1], c[2], c[3]); var mod = 998_244_353; var ncr = new NCR(x + y, mod); if (z == 0) { WriteLine(ncr.Calc(x - 1 + y - w, x - 1) * ncr.Fact(x) % mod * ncr.Calc(y, w) % mod * ncr.Fact(y - w) % mod); } else { WriteLine(ncr.Calc(x - z + y - 1, y - 1) * ncr.Fact(y) % mod * ncr.Calc(x, z) % mod * ncr.Fact(x - z) % 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; } /// <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]; } } }