結果
問題 | No.2529 Treasure Hunter |
ユーザー | kakel-san |
提出日時 | 2023-11-04 20:07:08 |
言語 | C# (.NET 8.0.203) |
結果 |
AC
|
実行時間 | 105 ms / 2,000 ms |
コード長 | 3,536 bytes |
コンパイル時間 | 15,321 ms |
コンパイル使用メモリ | 169,640 KB |
実行使用メモリ | 197,304 KB |
最終ジャッジ日時 | 2024-09-25 22:17:02 |
合計ジャッジ時間 | 10,053 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 57 ms
31,744 KB |
testcase_01 | AC | 105 ms
41,600 KB |
testcase_02 | AC | 97 ms
40,044 KB |
testcase_03 | AC | 102 ms
40,576 KB |
testcase_04 | AC | 103 ms
41,088 KB |
testcase_05 | AC | 105 ms
40,960 KB |
testcase_06 | AC | 101 ms
40,832 KB |
testcase_07 | AC | 101 ms
40,688 KB |
testcase_08 | AC | 101 ms
40,960 KB |
testcase_09 | AC | 96 ms
39,552 KB |
testcase_10 | AC | 104 ms
40,576 KB |
testcase_11 | AC | 105 ms
40,576 KB |
testcase_12 | AC | 95 ms
39,936 KB |
testcase_13 | AC | 93 ms
40,192 KB |
testcase_14 | AC | 94 ms
40,192 KB |
testcase_15 | AC | 94 ms
40,192 KB |
testcase_16 | AC | 94 ms
40,704 KB |
testcase_17 | AC | 97 ms
40,192 KB |
testcase_18 | AC | 96 ms
40,192 KB |
testcase_19 | AC | 96 ms
40,320 KB |
testcase_20 | AC | 95 ms
40,444 KB |
testcase_21 | AC | 95 ms
40,320 KB |
testcase_22 | AC | 98 ms
197,304 KB |
コンパイルメッセージ
復元対象のプロジェクトを決定しています... /home/judge/data/code/main.csproj を復元しました (96 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 int[] NList => ReadLine().Split().Select(int.Parse).ToArray(); public static void Main() { Solve(); } static void Solve() { var t = NN; var ans = new long[t]; for (var u = 0; u < t; ++u) { var c = NList; var (w, h) = (c[0], c[1]); ans[u] = Treasure(h, w); } WriteLine(string.Join("\n", ans)); } static int mod = 998_244_353; static int rev2 = 499_122_177; static long Treasure(int h, int w) { var dp = new long[3]; dp[0] = 1; for (var i = 0; i < h; ++i) { var ndp = new long[3]; ndp[0] = (dp[0] + dp[1] + dp[2]) % mod; if (w == 1) { ndp[1] = dp[0]; } else if (w == 2) { ndp[1] = (dp[0] * 2 + dp[1]) % mod; } else if (w == 3) { ndp[1] = (dp[0] * 3 + dp[1] * 2) % mod; } else { ndp[1] = (dp[0] * w + dp[1] * (w - 1) + dp[2] * (w - 2)) % mod; ndp[2] = (dp[0] * ((long)w % mod * (w - 1) % mod * rev2 % mod + mod - w) + dp[1] * ((long)(w - 1) % mod * (w - 2) % mod * rev2 % mod + mod - w + 2) + dp[2] * ((long)(w - 2) % mod * (w - 3) % mod * rev2 % mod + mod - w + 4)) % mod; } dp = ndp; } return (dp[0] + dp[1] + dp[2]) % 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]; } } }