結果

問題 No.2941 Sigma Music Game Score Problem
ユーザー kazuppakazuppa
提出日時 2024-09-29 12:35:32
言語 C++23(gcc13)
(gcc 13.2.0 + boost 1.83.0)
結果
AC  
実行時間 560 ms / 2,500 ms
コード長 409 bytes
コンパイル時間 5,567 ms
コンパイル使用メモリ 335,828 KB
実行使用メモリ 20,680 KB
最終ジャッジ日時 2024-09-29 12:35:47
合計ジャッジ時間 14,610 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
6,820 KB
testcase_01 AC 1 ms
6,816 KB
testcase_02 AC 1 ms
6,816 KB
testcase_03 AC 1 ms
6,816 KB
testcase_04 AC 1 ms
6,816 KB
testcase_05 AC 1 ms
6,816 KB
testcase_06 AC 1 ms
6,820 KB
testcase_07 AC 1 ms
6,820 KB
testcase_08 AC 1 ms
6,816 KB
testcase_09 AC 4 ms
6,816 KB
testcase_10 AC 2 ms
6,820 KB
testcase_11 AC 2 ms
6,820 KB
testcase_12 AC 2 ms
6,816 KB
testcase_13 AC 4 ms
6,816 KB
testcase_14 AC 4 ms
6,816 KB
testcase_15 AC 2 ms
6,816 KB
testcase_16 AC 379 ms
15,288 KB
testcase_17 AC 432 ms
16,612 KB
testcase_18 AC 482 ms
18,532 KB
testcase_19 AC 389 ms
15,064 KB
testcase_20 AC 330 ms
13,644 KB
testcase_21 AC 139 ms
8,520 KB
testcase_22 AC 148 ms
7,928 KB
testcase_23 AC 141 ms
7,828 KB
testcase_24 AC 483 ms
19,588 KB
testcase_25 AC 58 ms
6,820 KB
testcase_26 AC 2 ms
6,816 KB
testcase_27 AC 1 ms
6,816 KB
testcase_28 AC 1 ms
6,820 KB
testcase_29 AC 115 ms
10,096 KB
testcase_30 AC 189 ms
14,516 KB
testcase_31 AC 526 ms
19,032 KB
testcase_32 AC 560 ms
20,680 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