結果

問題 No.2941 Sigma Music Game Score Problem
ユーザー Carpenters-CatCarpenters-Cat
提出日時 2024-10-18 23:04:06
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 716 ms / 2,500 ms
コード長 458 bytes
コンパイル時間 4,733 ms
コンパイル使用メモリ 264,496 KB
実行使用メモリ 13,484 KB
最終ジャッジ日時 2024-10-18 23:04:30
合計ジャッジ時間 12,999 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,816 KB
testcase_03 AC 4 ms
6,816 KB
testcase_04 AC 2 ms
6,816 KB
testcase_05 AC 2 ms
6,816 KB
testcase_06 AC 2 ms
6,820 KB
testcase_07 AC 2 ms
6,820 KB
testcase_08 AC 2 ms
6,820 KB
testcase_09 AC 5 ms
6,820 KB
testcase_10 AC 3 ms
6,820 KB
testcase_11 AC 3 ms
6,820 KB
testcase_12 AC 3 ms
6,816 KB
testcase_13 AC 6 ms
6,820 KB
testcase_14 AC 7 ms
6,816 KB
testcase_15 AC 4 ms
6,820 KB
testcase_16 AC 547 ms
12,952 KB
testcase_17 AC 599 ms
13,484 KB
testcase_18 AC 684 ms
13,088 KB
testcase_19 AC 551 ms
11,948 KB
testcase_20 AC 451 ms
11,660 KB
testcase_21 AC 188 ms
6,816 KB
testcase_22 AC 203 ms
8,400 KB
testcase_23 AC 189 ms
8,148 KB
testcase_24 AC 659 ms
13,380 KB
testcase_25 AC 77 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,820 KB
testcase_29 AC 194 ms
7,764 KB
testcase_30 AC 282 ms
12,628 KB
testcase_31 AC 716 ms
11,840 KB
testcase_32 AC 710 ms
11,964 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
#include <atcoder/all>
using namespace atcoder;
using mint = modint998244353;
using ll = long long;
int main () {
	ll M, N;
	cin >> M >> N;
	std::vector<ll> A = {0};
	for (int i = 0; i < N; i ++) {
		ll a;
		cin >> a;
		A.push_back(a);
	}
	A.push_back(M + 1);
	mint ans = 0;
	for (int i = 0; i <= N; i ++) {
		mint d = A[i + 1] - A[i] - 1;
		ans += d * (d + 1) * (2 * d + 1) / 6;
	}
	cout << ans.val() << endl;
}
0