結果

問題 No.1348 Split Tile
ユーザー kakel-sankakel-san
提出日時 2024-08-14 22:19:49
言語 C#
(.NET 8.0.404)
結果
AC  
実行時間 138 ms / 2,000 ms
コード長 881 bytes
コンパイル時間 9,889 ms
コンパイル使用メモリ 167,484 KB
実行使用メモリ 183,512 KB
最終ジャッジ日時 2024-08-14 22:20:03
合計ジャッジ時間 14,037 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 50 ms
28,544 KB
testcase_01 AC 52 ms
28,672 KB
testcase_02 AC 67 ms
29,696 KB
testcase_03 AC 135 ms
29,696 KB
testcase_04 AC 105 ms
29,440 KB
testcase_05 AC 70 ms
29,440 KB
testcase_06 AC 63 ms
29,568 KB
testcase_07 AC 131 ms
29,568 KB
testcase_08 AC 108 ms
29,568 KB
testcase_09 AC 108 ms
29,824 KB
testcase_10 AC 124 ms
29,440 KB
testcase_11 AC 65 ms
29,824 KB
testcase_12 AC 101 ms
29,440 KB
testcase_13 AC 112 ms
29,696 KB
testcase_14 AC 98 ms
29,660 KB
testcase_15 AC 121 ms
29,568 KB
testcase_16 AC 93 ms
29,568 KB
testcase_17 AC 78 ms
29,440 KB
testcase_18 AC 108 ms
29,696 KB
testcase_19 AC 88 ms
29,568 KB
testcase_20 AC 92 ms
29,560 KB
testcase_21 AC 87 ms
29,440 KB
testcase_22 AC 135 ms
29,568 KB
testcase_23 AC 138 ms
29,696 KB
testcase_24 AC 123 ms
29,696 KB
testcase_25 AC 132 ms
29,568 KB
testcase_26 AC 127 ms
29,440 KB
testcase_27 AC 131 ms
183,512 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
  復元対象のプロジェクトを決定しています...
  /home/judge/data/code/main.csproj を復元しました (99 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 n = NN;
        var mod = 998_244_353;
        var ans = 0L;
        var k = 1L;
        var pk = 1L;
        var add = 1L;
        int half = 499122177;
        for (var i = 2; i <= n; ++i)
        {
            ans = (ans * (i + 1) + k + add * pk % mod) % mod;
            pk = k;
            k = k * i % mod;
            add = (add + (long)i * (i + 1) % mod * half % mod) % mod;
        }
        WriteLine(ans);
    }
}
0