結果

問題 No.2941 Sigma Music Game Score Problem
ユーザー 沙耶花沙耶花
提出日時 2024-10-18 21:50:52
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 746 ms / 2,500 ms
コード長 598 bytes
コンパイル時間 4,260 ms
コンパイル使用メモリ 265,400 KB
実行使用メモリ 20,028 KB
最終ジャッジ日時 2024-10-18 22:41:22
合計ジャッジ時間 12,524 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 2 ms
6,820 KB
testcase_02 AC 2 ms
6,816 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,824 KB
testcase_07 AC 2 ms
6,816 KB
testcase_08 AC 2 ms
6,820 KB
testcase_09 AC 5 ms
6,816 KB
testcase_10 AC 2 ms
6,816 KB
testcase_11 AC 3 ms
6,820 KB
testcase_12 AC 3 ms
6,820 KB
testcase_13 AC 6 ms
6,816 KB
testcase_14 AC 7 ms
6,816 KB
testcase_15 AC 3 ms
6,820 KB
testcase_16 AC 531 ms
15,028 KB
testcase_17 AC 594 ms
16,536 KB
testcase_18 AC 670 ms
19,320 KB
testcase_19 AC 546 ms
15,384 KB
testcase_20 AC 445 ms
12,944 KB
testcase_21 AC 191 ms
7,348 KB
testcase_22 AC 210 ms
7,880 KB
testcase_23 AC 194 ms
7,764 KB
testcase_24 AC 679 ms
18,828 KB
testcase_25 AC 79 ms
6,820 KB
testcase_26 AC 2 ms
6,820 KB
testcase_27 AC 1 ms
6,820 KB
testcase_28 AC 2 ms
6,820 KB
testcase_29 AC 192 ms
10,444 KB
testcase_30 AC 301 ms
13,360 KB
testcase_31 AC 746 ms
19,780 KB
testcase_32 AC 728 ms
20,028 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <stdio.h>
#include <atcoder/all>
#include <bits/stdc++.h>
using namespace std;
using namespace atcoder;
using mint = modint998244353;
#define rep(i,n) for (int i = 0; i < (n); ++i)
#define Inf32 1000000001
#define Inf64 1000000000000000000LL

mint f2(long long n){
	mint ret = n;
	ret *= n+1;
	ret *= n*2+1;
	ret /= 6;
	return ret;
}

int main(){
	
	long long n,m;
	cin>>n>>m;
	vector<long long> a(m);
	rep(i,m)cin>>a[i];
	a.push_back(0);
	a.push_back(n+1);
	sort(a.begin(),a.end());
	mint ans = 0;
	rep(i,a.size()-1){
		ans += f2(a[i+1]-a[i]-1);
	}
	cout<<ans.val()<<endl;
	
	return 0;
}
0