結果

問題 No.2550 MORE! JUMP! MORE!
ユーザー kakel-sankakel-san
提出日時 2024-01-30 00:31:56
言語 C#
(.NET 8.0.203)
結果
AC  
実行時間 117 ms / 2,000 ms
コード長 886 bytes
コンパイル時間 7,770 ms
コンパイル使用メモリ 166,552 KB
実行使用メモリ 210,556 KB
最終ジャッジ日時 2024-09-28 10:10:02
合計ジャッジ時間 13,836 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 57 ms
30,208 KB
testcase_01 AC 57 ms
29,820 KB
testcase_02 AC 57 ms
30,208 KB
testcase_03 AC 56 ms
30,080 KB
testcase_04 AC 58 ms
29,924 KB
testcase_05 AC 57 ms
29,696 KB
testcase_06 AC 58 ms
29,952 KB
testcase_07 AC 58 ms
30,208 KB
testcase_08 AC 58 ms
30,208 KB
testcase_09 AC 58 ms
30,080 KB
testcase_10 AC 58 ms
30,208 KB
testcase_11 AC 57 ms
30,080 KB
testcase_12 AC 57 ms
30,336 KB
testcase_13 AC 57 ms
30,208 KB
testcase_14 AC 56 ms
30,072 KB
testcase_15 AC 56 ms
30,208 KB
testcase_16 AC 57 ms
30,080 KB
testcase_17 AC 56 ms
30,080 KB
testcase_18 AC 56 ms
29,952 KB
testcase_19 AC 57 ms
30,080 KB
testcase_20 AC 102 ms
48,796 KB
testcase_21 AC 90 ms
41,088 KB
testcase_22 AC 77 ms
34,304 KB
testcase_23 AC 95 ms
48,840 KB
testcase_24 AC 111 ms
55,288 KB
testcase_25 AC 97 ms
47,696 KB
testcase_26 AC 90 ms
42,880 KB
testcase_27 AC 104 ms
52,528 KB
testcase_28 AC 104 ms
50,132 KB
testcase_29 AC 96 ms
43,648 KB
testcase_30 AC 115 ms
56,032 KB
testcase_31 AC 114 ms
55,780 KB
testcase_32 AC 114 ms
55,904 KB
testcase_33 AC 114 ms
55,652 KB
testcase_34 AC 114 ms
55,772 KB
testcase_35 AC 116 ms
55,780 KB
testcase_36 AC 117 ms
55,780 KB
testcase_37 AC 116 ms
55,648 KB
testcase_38 AC 116 ms
55,524 KB
testcase_39 AC 115 ms
210,556 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
  復元対象のプロジェクトを決定しています...
  /home/judge/data/code/main.csproj を復元しました (101 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 a = NList;
        var mod = 998_244_353;
        var ans = 0L;
        for (var i = 0; i < n; ++i)
        {
            if (i + 1 < n) ans = (ans + (long)a[i] * (i + 2) % mod) % mod;
            else ans = (ans + (long)a[i] * (i + 2) * 2 % mod) % mod;
        }
        ans = ans * 499122177 % mod * 499122177 % mod;
        for (var i = 0; i < n - 1; ++i) ans = ans * 2 % mod;
        WriteLine(ans);
    }
}
0