結果

問題 No.2600 Avator Height
ユーザー kakel-sankakel-san
提出日時 2024-01-28 21:50:42
言語 C#
(.NET 8.0.203)
結果
AC  
実行時間 152 ms / 2,000 ms
コード長 1,046 bytes
コンパイル時間 7,662 ms
コンパイル使用メモリ 171,536 KB
実行使用メモリ 209,812 KB
最終ジャッジ日時 2024-09-28 09:57:55
合計ジャッジ時間 12,996 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 66 ms
33,408 KB
testcase_01 AC 133 ms
51,072 KB
testcase_02 AC 152 ms
51,328 KB
testcase_03 AC 138 ms
51,200 KB
testcase_04 AC 138 ms
51,328 KB
testcase_05 AC 135 ms
50,816 KB
testcase_06 AC 135 ms
51,328 KB
testcase_07 AC 133 ms
51,328 KB
testcase_08 AC 136 ms
51,328 KB
testcase_09 AC 134 ms
51,072 KB
testcase_10 AC 132 ms
51,328 KB
testcase_11 AC 132 ms
51,200 KB
testcase_12 AC 135 ms
51,200 KB
testcase_13 AC 132 ms
51,456 KB
testcase_14 AC 130 ms
51,200 KB
testcase_15 AC 131 ms
50,944 KB
testcase_16 AC 133 ms
51,328 KB
testcase_17 AC 130 ms
51,200 KB
testcase_18 AC 132 ms
51,456 KB
testcase_19 AC 131 ms
50,816 KB
testcase_20 AC 130 ms
51,456 KB
testcase_21 AC 132 ms
51,328 KB
testcase_22 AC 132 ms
50,944 KB
testcase_23 AC 135 ms
50,944 KB
testcase_24 AC 111 ms
42,496 KB
testcase_25 AC 131 ms
209,812 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/

ソースコード

diff #

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 r = new long[200001];
        r[1] = 1;
        r[2] = 1;
        var e = new long[200001];
        e[1] = 1;
        e[2] = 3;
        var mod = 998_244_353;
        for (var i = 3; i < r.Length; ++i)
        {
            r[i] = (r[i - 2] + r[i - 1]) % mod;
            e[i] = (e[i - 2] + e[i - 1]) % mod;
        }
        var q = NN;
        var ans = new long[q];
        for (var i = 0; i < q; ++i)
        {
            var n = NN;
            ans[i] = (5 * r[n] % mod * r[n] % mod - e[n] * e[n] % mod + mod) % mod;
        }
        WriteLine(string.Join("\n", ans));
    }
}
0