結果

問題 No.2941 Sigma Music Game Score Problem
ユーザー eve__fuyukieve__fuyuki
提出日時 2024-10-19 13:27:02
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 290 ms / 2,500 ms
コード長 509 bytes
コンパイル時間 2,480 ms
コンパイル使用メモリ 205,112 KB
実行使用メモリ 11,020 KB
最終ジャッジ日時 2024-10-19 13:27:10
合計ジャッジ時間 6,919 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,812 KB
testcase_01 AC 2 ms
6,816 KB
testcase_02 AC 1 ms
6,820 KB
testcase_03 AC 2 ms
6,824 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 2 ms
6,820 KB
testcase_08 AC 1 ms
6,824 KB
testcase_09 AC 3 ms
6,820 KB
testcase_10 AC 2 ms
6,816 KB
testcase_11 AC 3 ms
6,816 KB
testcase_12 AC 2 ms
6,820 KB
testcase_13 AC 3 ms
6,816 KB
testcase_14 AC 3 ms
6,820 KB
testcase_15 AC 2 ms
6,820 KB
testcase_16 AC 212 ms
8,920 KB
testcase_17 AC 214 ms
9,492 KB
testcase_18 AC 254 ms
10,684 KB
testcase_19 AC 201 ms
9,004 KB
testcase_20 AC 164 ms
7,996 KB
testcase_21 AC 73 ms
6,820 KB
testcase_22 AC 84 ms
6,816 KB
testcase_23 AC 73 ms
6,816 KB
testcase_24 AC 259 ms
10,864 KB
testcase_25 AC 30 ms
6,816 KB
testcase_26 AC 2 ms
6,816 KB
testcase_27 AC 2 ms
6,816 KB
testcase_28 AC 1 ms
6,824 KB
testcase_29 AC 98 ms
6,824 KB
testcase_30 AC 146 ms
7,972 KB
testcase_31 AC 269 ms
10,956 KB
testcase_32 AC 290 ms
11,020 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;

void fast_io() {
	ios_base::sync_with_stdio(false);
	cin.tie(nullptr);
}

#include <atcoder/modint>
using mint = atcoder::modint998244353;
int main() {
	fast_io();
	long long m, n;
	cin >> m >> n;
	vector<long long> x(n + 2);
	x[0] = 0;
	for (int i = 1; i <= n; i++) {
		cin >> x[i];
	}
	x[n + 1] = m + 1;
	mint ans = 0;
	for (int i = 1; i <= n + 1; i++) {
		mint d = x[i] - x[i - 1] - 1;
		ans += d * (d + 1) * (2 * d + 1) / 6;
	}
	cout << ans.val() << endl;
}
0