結果

問題 No.2941 Sigma Music Game Score Problem
ユーザー otoshigootoshigo
提出日時 2024-10-18 22:01:25
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 293 ms / 2,500 ms
コード長 728 bytes
コンパイル時間 2,388 ms
コンパイル使用メモリ 204,880 KB
実行使用メモリ 11,012 KB
最終ジャッジ日時 2024-10-18 22:44:34
合計ジャッジ時間 6,804 ms
ジャッジサーバーID
(参考情報)
judge4 / judge
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 1 ms
6,816 KB
testcase_02 AC 2 ms
6,816 KB
testcase_03 AC 1 ms
6,820 KB
testcase_04 AC 2 ms
6,816 KB
testcase_05 AC 2 ms
6,816 KB
testcase_06 AC 2 ms
6,820 KB
testcase_07 AC 2 ms
6,820 KB
testcase_08 AC 2 ms
6,816 KB
testcase_09 AC 3 ms
6,816 KB
testcase_10 AC 2 ms
6,816 KB
testcase_11 AC 3 ms
6,816 KB
testcase_12 AC 3 ms
6,820 KB
testcase_13 AC 3 ms
6,820 KB
testcase_14 AC 4 ms
6,820 KB
testcase_15 AC 2 ms
6,820 KB
testcase_16 AC 202 ms
8,892 KB
testcase_17 AC 234 ms
9,496 KB
testcase_18 AC 271 ms
10,692 KB
testcase_19 AC 202 ms
9,036 KB
testcase_20 AC 167 ms
7,924 KB
testcase_21 AC 77 ms
6,816 KB
testcase_22 AC 79 ms
6,820 KB
testcase_23 AC 73 ms
6,816 KB
testcase_24 AC 261 ms
10,848 KB
testcase_25 AC 31 ms
6,816 KB
testcase_26 AC 2 ms
6,820 KB
testcase_27 AC 2 ms
6,816 KB
testcase_28 AC 2 ms
6,816 KB
testcase_29 AC 36 ms
6,816 KB
testcase_30 AC 55 ms
8,148 KB
testcase_31 AC 293 ms
11,012 KB
testcase_32 AC 280 ms
10,928 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>
#include<atcoder/modint>
using namespace std;
using ll=long long;
using mint=atcoder::modint998244353;
#define all(v) v.begin(),v.end()
#define rall(v) v.rbegin(),v.rend()
template<class T> bool chmax(T &a, T b){if (a < b){a = b;return true;} else return false;}
template<class T> bool chmin(T &a, T b){if (a > b){a = b;return true;} else return false;}

int main(){
    ios::sync_with_stdio(false);
    cin.tie(nullptr);
    ll M,N;
    cin>>M>>N;
    vector<ll>X(N+2);
    for(int i=1;i<=N;i++)cin>>X[i];
    X[N+1]=M+1;
    mint ans=0;
    for(int i=1;i<=N+1;i++){
        if(X[i-1]+1==X[i])continue;
        ll l=X[i]-X[i-1]-1;
        ans+=(mint)l*(l+1)*(2*l+1)/6;
    }
    cout<<ans.val()<<"\n";
}
0