結果

問題 No.2941 Sigma Music Game Score Problem
ユーザー kazuppakazuppa
提出日時 2024-10-08 20:38:10
言語 C++23(gcc13)
(gcc 13.2.0 + boost 1.83.0)
結果
AC  
実行時間 635 ms / 2,500 ms
コード長 509 bytes
コンパイル時間 6,436 ms
コンパイル使用メモリ 335,804 KB
実行使用メモリ 19,072 KB
最終ジャッジ日時 2024-10-08 20:38:27
合計ジャッジ時間 16,411 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
5,248 KB
testcase_01 AC 2 ms
5,248 KB
testcase_02 AC 2 ms
5,248 KB
testcase_03 AC 2 ms
5,248 KB
testcase_04 AC 2 ms
5,248 KB
testcase_05 AC 2 ms
5,248 KB
testcase_06 AC 2 ms
5,248 KB
testcase_07 AC 2 ms
5,248 KB
testcase_08 AC 2 ms
5,248 KB
testcase_09 AC 5 ms
5,248 KB
testcase_10 AC 2 ms
5,248 KB
testcase_11 AC 3 ms
5,248 KB
testcase_12 AC 3 ms
5,248 KB
testcase_13 AC 5 ms
5,248 KB
testcase_14 AC 6 ms
5,248 KB
testcase_15 AC 3 ms
5,248 KB
testcase_16 AC 478 ms
14,592 KB
testcase_17 AC 516 ms
16,000 KB
testcase_18 AC 596 ms
18,304 KB
testcase_19 AC 459 ms
15,104 KB
testcase_20 AC 367 ms
12,928 KB
testcase_21 AC 159 ms
7,296 KB
testcase_22 AC 171 ms
7,680 KB
testcase_23 AC 162 ms
7,424 KB
testcase_24 AC 584 ms
18,560 KB
testcase_25 AC 66 ms
6,816 KB
testcase_26 AC 2 ms
6,816 KB
testcase_27 AC 2 ms
6,816 KB
testcase_28 AC 2 ms
6,816 KB
testcase_29 AC 132 ms
9,828 KB
testcase_30 AC 202 ms
13,184 KB
testcase_31 AC 635 ms
19,072 KB
testcase_32 AC 605 ms
18,944 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

int main(){
    ll m;
    int n;
    cin >> m >> n;
    vector<ll> x(n);
    for(int i = 0; i < n; i++){
        cin >> x[i];
    }
    x.insert(x.begin(), 0);
    x.push_back(m + 1);
    mint ans=0;
    for(int i = 0; i <= n; i++) {
        mint dis = x[i + 1] - x[i] - 1;
        ans += dis * (dis + 1) * (2 * dis + 1);
    }
    cout << (ans / 6).val() << endl;
}
0