結果

問題 No.2941 Sigma Music Game Score Problem
ユーザー Nzt3Nzt3
提出日時 2024-10-20 14:16:46
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 161 ms / 2,500 ms
コード長 637 bytes
コンパイル時間 2,331 ms
コンパイル使用メモリ 200,928 KB
実行使用メモリ 6,820 KB
最終ジャッジ日時 2024-10-20 14:16:52
合計ジャッジ時間 6,080 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,820 KB
testcase_01 AC 2 ms
6,816 KB
testcase_02 AC 2 ms
6,820 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,816 KB
testcase_09 AC 2 ms
6,816 KB
testcase_10 AC 2 ms
6,820 KB
testcase_11 AC 2 ms
6,816 KB
testcase_12 AC 2 ms
6,816 KB
testcase_13 AC 2 ms
6,816 KB
testcase_14 AC 3 ms
6,816 KB
testcase_15 AC 2 ms
6,816 KB
testcase_16 AC 110 ms
6,820 KB
testcase_17 AC 123 ms
6,816 KB
testcase_18 AC 136 ms
6,816 KB
testcase_19 AC 110 ms
6,816 KB
testcase_20 AC 92 ms
6,820 KB
testcase_21 AC 40 ms
6,820 KB
testcase_22 AC 44 ms
6,816 KB
testcase_23 AC 41 ms
6,820 KB
testcase_24 AC 161 ms
6,816 KB
testcase_25 AC 17 ms
6,820 KB
testcase_26 AC 2 ms
6,816 KB
testcase_27 AC 2 ms
6,820 KB
testcase_28 AC 2 ms
6,816 KB
testcase_29 AC 37 ms
6,820 KB
testcase_30 AC 57 ms
6,816 KB
testcase_31 AC 151 ms
6,816 KB
testcase_32 AC 149 ms
6,816 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
using ll = long long;
using ull = unsigned long long;
constexpr int MOD = 998244353;
#define rep(i, n) for (int i = 0; i < (int)(n); i++)
#define rep2(i, l, r) for (int i = (l); i < (int)(r); i++)
#define all(v) v.begin(), v.end()
void ch(ll &a,ll b){
  a=(a+b)%MOD;
}
int main() {
  ios::sync_with_stdio(false);
  cin.tie(nullptr);
  ll N,M;
  cin>>M>>N;
  auto sum3=[](ll a){
    a%=MOD;
    return a*(a+1)%MOD*(a*2+1)%MOD*166374059%MOD;
  };
  ll l=1,ans=0;
  rep(i,N){
    ll r;
    cin>>r;
    ch(ans,sum3(r-l));
    l=r+1;
  }
  ch(ans,sum3(M+1-l));
  ch(ans,MOD);
  cout<<ans<<'\n';
}
0