結果

問題 No.2941 Sigma Music Game Score Problem
ユーザー cled0328cled0328
提出日時 2024-10-18 21:52:39
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 731 ms / 2,500 ms
コード長 396 bytes
コンパイル時間 2,890 ms
コンパイル使用メモリ 206,544 KB
実行使用メモリ 20,100 KB
最終ジャッジ日時 2024-10-18 22:42:14
合計ジャッジ時間 10,118 ms
ジャッジサーバーID
(参考情報)
judge1 / judge
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
6,816 KB
testcase_01 AC 2 ms
6,820 KB
testcase_02 AC 1 ms
6,820 KB
testcase_03 AC 2 ms
6,820 KB
testcase_04 AC 2 ms
6,820 KB
testcase_05 AC 2 ms
6,820 KB
testcase_06 AC 2 ms
6,820 KB
testcase_07 AC 2 ms
6,820 KB
testcase_08 AC 2 ms
6,820 KB
testcase_09 AC 6 ms
6,816 KB
testcase_10 AC 2 ms
6,820 KB
testcase_11 AC 4 ms
6,816 KB
testcase_12 AC 3 ms
6,816 KB
testcase_13 AC 6 ms
6,820 KB
testcase_14 AC 7 ms
6,820 KB
testcase_15 AC 4 ms
6,816 KB
testcase_16 AC 536 ms
14,636 KB
testcase_17 AC 582 ms
16,568 KB
testcase_18 AC 663 ms
18,564 KB
testcase_19 AC 558 ms
16,316 KB
testcase_20 AC 434 ms
13,888 KB
testcase_21 AC 187 ms
7,604 KB
testcase_22 AC 201 ms
8,776 KB
testcase_23 AC 193 ms
9,040 KB
testcase_24 AC 677 ms
19,152 KB
testcase_25 AC 85 ms
6,816 KB
testcase_26 AC 1 ms
6,816 KB
testcase_27 AC 2 ms
6,816 KB
testcase_28 AC 2 ms
6,820 KB
testcase_29 AC 177 ms
9,932 KB
testcase_30 AC 278 ms
13,568 KB
testcase_31 AC 704 ms
20,100 KB
testcase_32 AC 731 ms
19,228 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
#include <atcoder/modint>
using namespace std;
using mint=atcoder::modint998244353;

int main(){
    long long m;int n;cin>>m>>n;
    vector<long long> x(n+1);
    for(int i=0;i<n;i++)cin>>x[i+1];
    x.push_back(m+1);
    mint ans=0;
    for(int i=1;i<n+2;i++){
        ans+=((mint)x[i]-x[i-1])*(x[i]-x[i-1]-1)*(((x[i]-x[i-1]))*2-1)/6;
    }
    cout<<ans.val()<<"\n";
}
0