結果

問題 No.2941 Sigma Music Game Score Problem
ユーザー tobisatistobisatis
提出日時 2024-10-18 22:00:46
言語 C#
(.NET 8.0.203)
結果
WA  
実行時間 -
コード長 1,863 bytes
コンパイル時間 10,170 ms
コンパイル使用メモリ 170,104 KB
実行使用メモリ 377,412 KB
最終ジャッジ日時 2024-10-18 22:44:27
合計ジャッジ時間 19,011 ms
ジャッジサーバーID
(参考情報)
judge4 / judge
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 57 ms
29,952 KB
testcase_01 AC 54 ms
29,780 KB
testcase_02 AC 53 ms
29,824 KB
testcase_03 AC 54 ms
29,952 KB
testcase_04 AC 55 ms
29,568 KB
testcase_05 AC 55 ms
29,952 KB
testcase_06 AC 55 ms
29,696 KB
testcase_07 AC 55 ms
30,208 KB
testcase_08 AC 54 ms
29,696 KB
testcase_09 AC 58 ms
30,848 KB
testcase_10 AC 56 ms
30,464 KB
testcase_11 AC 61 ms
31,104 KB
testcase_12 AC 60 ms
31,060 KB
testcase_13 AC 60 ms
30,712 KB
testcase_14 AC 60 ms
31,616 KB
testcase_15 AC 56 ms
30,180 KB
testcase_16 AC 466 ms
177,072 KB
testcase_17 AC 502 ms
191,892 KB
testcase_18 AC 596 ms
205,292 KB
testcase_19 AC 479 ms
182,588 KB
testcase_20 AC 415 ms
163,520 KB
testcase_21 AC 224 ms
78,440 KB
testcase_22 AC 239 ms
96,392 KB
testcase_23 AC 222 ms
84,352 KB
testcase_24 AC 600 ms
205,620 KB
testcase_25 AC 135 ms
51,940 KB
testcase_26 WA -
testcase_27 WA -
testcase_28 AC 54 ms
29,952 KB
testcase_29 AC 206 ms
83,992 KB
testcase_30 AC 295 ms
118,556 KB
testcase_31 AC 640 ms
215,900 KB
testcase_32 AC 639 ms
377,412 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
  復元対象のプロジェクトを決定しています...
  /home/judge/data/code/main.csproj を復元しました (90 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 #

namespace AtCoder;

#nullable enable

using System.Numerics;

static class Extensions
{
    public static T[] Repeat<T>(this int time, Func<T> F) => Enumerable.Range(0, time).Select(_ => F()).ToArray();

}

class AtCoder
{
    object? Solve()
    {
        var m = Input<long>();
        var n = Int();
        var xz = new List<long>();
        for (var i = 0; i < n; i++) xz.Add(Input<long>());
        xz.Add(m + 1);

        Int128 ans = 0;
        var last = 0L;
        foreach (var x in xz)
        {
            Int128 d = x - 1 - last;
            last = x;
            if (x <= 0) continue;
            ans += d * (d + 1) * (d * 2 + 1) / 6;
            ans %= 998244353;
        }
        return ans;
    }

    public static void Main() => new AtCoder().Run();
    public void Run()
    {
        var res = Solve();
        if (res != null)
        {
            if (res is bool yes) res = yes ? "Yes" : "No";
            sw.WriteLine(res);
        }
        sw.Flush();
    }

    string[] input = Array.Empty<string>();
    int iter = 0;
    readonly StreamWriter sw = new(Console.OpenStandardOutput()) { AutoFlush = false };

    string String()
    {
        while (iter >= input.Length) (input, iter) = (Console.ReadLine()!.Trim().Split(' '), 0);
        return input[iter++];
    }
    T Input<T>() where T : IParsable<T> => T.Parse(String(), null);
    int Int() => Input<int>();
    void Out(object? x, string? separator = null)
    {
        separator ??= Environment.NewLine;
        if (x is System.Collections.IEnumerable obj and not string)
        {
            var firstLine = true;
            foreach (var item in obj)
            {
                if (!firstLine) sw.Write(separator);
                firstLine = false;
                sw.Write(item);
            }
        }
        else sw.Write(x);
        sw.WriteLine();
    }
}
0