結果

問題 No.2941 Sigma Music Game Score Problem
ユーザー a1048576a1048576
提出日時 2024-10-18 21:41:36
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
MLE  
実行時間 -
コード長 431 bytes
コンパイル時間 3,817 ms
コンパイル使用メモリ 230,104 KB
実行使用メモリ 814,004 KB
最終ジャッジ日時 2024-10-18 22:34:02
合計ジャッジ時間 6,116 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 2 ms
6,824 KB
testcase_02 AC 2 ms
6,820 KB
testcase_03 AC 1 ms
6,816 KB
testcase_04 AC 2 ms
6,820 KB
testcase_05 AC 2 ms
6,820 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 MLE -
testcase_10 -- -
testcase_11 -- -
testcase_12 -- -
testcase_13 -- -
testcase_14 -- -
testcase_15 -- -
testcase_16 -- -
testcase_17 -- -
testcase_18 -- -
testcase_19 -- -
testcase_20 -- -
testcase_21 -- -
testcase_22 -- -
testcase_23 -- -
testcase_24 -- -
testcase_25 -- -
testcase_26 -- -
testcase_27 -- -
testcase_28 -- -
testcase_29 -- -
testcase_30 -- -
testcase_31 -- -
testcase_32 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>
using namespace std;
#include <atcoder/all> 
using mint = atcoder::modint998244353;
#define int long long
signed main() {
  int n,m;
  cin >> n >> m;
  vector<int> a(n+2);
  a[0] = 0;
  for(int i = 1; i <= m; i++) cin >> a[i];
  a[m+1] = n+1;
  mint ans = 0, mod = 998244353;
  for(int i = 0; i < m+1; i++) {
    mint s = a[i+1]-a[i]-1;
    ans+=s*(s+1)*(s*2+1);
  }
  ans/=6;
  cout << ans.val() << endl;
}
0