結果

問題 No.2941 Sigma Music Game Score Problem
ユーザー tanaka255tanaka255
提出日時 2024-10-18 22:20:35
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 164 ms / 2,500 ms
コード長 461 bytes
コンパイル時間 2,532 ms
コンパイル使用メモリ 204,256 KB
実行使用メモリ 11,040 KB
最終ジャッジ日時 2024-10-18 22:50:04
合計ジャッジ時間 5,649 ms
ジャッジサーバーID
(参考情報)
judge1 / judge
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,820 KB
testcase_01 AC 2 ms
6,816 KB
testcase_02 AC 2 ms
6,816 KB
testcase_03 AC 2 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,816 KB
testcase_07 AC 2 ms
6,820 KB
testcase_08 AC 2 ms
6,820 KB
testcase_09 AC 3 ms
6,816 KB
testcase_10 AC 2 ms
6,816 KB
testcase_11 AC 2 ms
6,820 KB
testcase_12 AC 2 ms
6,816 KB
testcase_13 AC 3 ms
6,820 KB
testcase_14 AC 3 ms
6,820 KB
testcase_15 AC 3 ms
6,816 KB
testcase_16 AC 121 ms
8,884 KB
testcase_17 AC 150 ms
9,556 KB
testcase_18 AC 154 ms
10,736 KB
testcase_19 AC 122 ms
8,976 KB
testcase_20 AC 102 ms
8,060 KB
testcase_21 AC 46 ms
6,824 KB
testcase_22 AC 49 ms
6,816 KB
testcase_23 AC 46 ms
6,820 KB
testcase_24 AC 157 ms
10,836 KB
testcase_25 AC 21 ms
6,816 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 41 ms
6,820 KB
testcase_30 AC 62 ms
8,208 KB
testcase_31 AC 164 ms
10,996 KB
testcase_32 AC 164 ms
11,040 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include"atcoder/modint"
#include<bits/stdc++.h>
using namespace std;
int main(){
  cin.tie(0)->sync_with_stdio(0);
  using mint=atcoder::modint998244353;
  using ll=long long;
  ll M;int 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;
  mint inv6=mint::raw(6).inv();
  for(int i=0;i<=N;++i){
    mint x=mint(X[i+1]-X[i]-1);
    ans+=x*(x+mint::raw(1))*(mint::raw(2)*x+mint::raw(1))*inv6;
  }
  cout<<ans.val()<<endl;
}
0