結果
問題 | No.1754 T-block Tiling |
ユーザー | さかぽん |
提出日時 | 2021-11-20 14:14:08 |
言語 | C#(csc) (csc 3.9.0) |
結果 |
AC
|
実行時間 | 27 ms / 2,000 ms |
コード長 | 906 bytes |
コンパイル時間 | 2,788 ms |
コンパイル使用メモリ | 107,776 KB |
実行使用メモリ | 18,816 KB |
最終ジャッジ日時 | 2024-06-11 15:14:37 |
合計ジャッジ時間 | 3,051 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 27 ms
18,816 KB |
testcase_01 | AC | 27 ms
18,688 KB |
コンパイルメッセージ
Microsoft (R) Visual C# Compiler version 3.9.0-6.21124.20 (db94f4cc) Copyright (C) Microsoft Corporation. All rights reserved.
ソースコード
using System; using System.Linq; class A { static void Main() => Console.WriteLine(string.Join("\n", new int[int.Parse(Console.ReadLine())].Select(_ => Solve()))); static object Solve() { var n = int.Parse(Console.ReadLine()); if (dp == null) dp = Init(); return dp[n][0]; } static long[][] dp; static long[][] Init() { var n = 100; var dp = NewArray2<long>(n + 1, 3); dp[0][0] = 1; for (int i = 0; i < n; i++) { dp[i + 1][0] += dp[i][0] * 2; dp[i + 1][1] += dp[i][0]; dp[i + 1][2] += dp[i][0]; dp[i + 1][0] += dp[i][1]; dp[i + 1][1] += dp[i][1]; dp[i + 1][0] += dp[i][2]; dp[i + 1][2] += dp[i][2]; dp[i + 1][0] %= M; dp[i + 1][1] %= M; dp[i + 1][2] %= M; } return dp; } const long M = 998244353; static T[][] NewArray2<T>(int n1, int n2, T v = default) => Array.ConvertAll(new bool[n1], _ => Array.ConvertAll(new bool[n2], __ => v)); }