結果

問題 No.2941 Sigma Music Game Score Problem
ユーザー t98slidert98slider
提出日時 2024-10-19 19:23:01
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 151 ms / 2,500 ms
コード長 466 bytes
コンパイル時間 4,381 ms
コンパイル使用メモリ 263,828 KB
実行使用メモリ 11,112 KB
最終ジャッジ日時 2024-10-19 19:23:10
合計ジャッジ時間 8,187 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 2 ms
6,816 KB
testcase_02 AC 2 ms
6,820 KB
testcase_03 AC 2 ms
6,816 KB
testcase_04 AC 2 ms
6,820 KB
testcase_05 AC 2 ms
6,816 KB
testcase_06 AC 1 ms
6,820 KB
testcase_07 AC 2 ms
6,816 KB
testcase_08 AC 2 ms
6,816 KB
testcase_09 AC 3 ms
6,820 KB
testcase_10 AC 2 ms
6,820 KB
testcase_11 AC 2 ms
6,816 KB
testcase_12 AC 2 ms
6,820 KB
testcase_13 AC 3 ms
6,816 KB
testcase_14 AC 2 ms
6,820 KB
testcase_15 AC 2 ms
6,820 KB
testcase_16 AC 109 ms
8,944 KB
testcase_17 AC 124 ms
9,568 KB
testcase_18 AC 138 ms
10,720 KB
testcase_19 AC 118 ms
8,972 KB
testcase_20 AC 92 ms
8,004 KB
testcase_21 AC 41 ms
6,816 KB
testcase_22 AC 43 ms
6,816 KB
testcase_23 AC 42 ms
6,816 KB
testcase_24 AC 141 ms
10,868 KB
testcase_25 AC 18 ms
6,820 KB
testcase_26 AC 2 ms
6,820 KB
testcase_27 AC 2 ms
6,820 KB
testcase_28 AC 2 ms
6,816 KB
testcase_29 AC 39 ms
6,816 KB
testcase_30 AC 56 ms
8,172 KB
testcase_31 AC 151 ms
11,112 KB
testcase_32 AC 147 ms
11,016 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
#include <atcoder/all>
using namespace std;
using ll = long long;

int main(){
    ios::sync_with_stdio(false);
    cin.tie(0);
    ll m, n;
    cin >> m >> n;
    vector<ll> x(n + 2);
    x[n + 1] = m + 1;
    for(int i = 1; i <= n; i++) cin >> x[i];
    atcoder::modint998244353 ans, v;
    for(int i = 0; i <= n; i++){
        v = x[i + 1] - x[i] - 1;
        ans += v * (v + 1) * (2 * v + 1);
    }
    cout << (ans / 6).val() << '\n';
}
0