結果

問題 No.2941 Sigma Music Game Score Problem
ユーザー pengin_2000pengin_2000
提出日時 2024-10-18 22:52:27
言語 C
(gcc 12.3.0)
結果
AC  
実行時間 179 ms / 2,500 ms
コード長 671 bytes
コンパイル時間 709 ms
コンパイル使用メモリ 30,592 KB
実行使用メモリ 9,612 KB
最終ジャッジ日時 2024-10-18 22:56:13
合計ジャッジ時間 4,227 ms
ジャッジサーバーID
(参考情報)
judge1 / judge6
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
6,816 KB
testcase_01 AC 1 ms
6,820 KB
testcase_02 AC 2 ms
6,824 KB
testcase_03 AC 2 ms
6,820 KB
testcase_04 AC 1 ms
6,816 KB
testcase_05 AC 1 ms
6,824 KB
testcase_06 AC 1 ms
6,820 KB
testcase_07 AC 1 ms
6,820 KB
testcase_08 AC 1 ms
6,820 KB
testcase_09 AC 2 ms
6,816 KB
testcase_10 AC 1 ms
6,820 KB
testcase_11 AC 2 ms
6,816 KB
testcase_12 AC 1 ms
6,820 KB
testcase_13 AC 2 ms
6,820 KB
testcase_14 AC 2 ms
6,816 KB
testcase_15 AC 1 ms
6,820 KB
testcase_16 AC 136 ms
8,884 KB
testcase_17 AC 145 ms
8,120 KB
testcase_18 AC 164 ms
9,308 KB
testcase_19 AC 142 ms
7,844 KB
testcase_20 AC 107 ms
7,888 KB
testcase_21 AC 46 ms
6,820 KB
testcase_22 AC 51 ms
6,816 KB
testcase_23 AC 47 ms
6,816 KB
testcase_24 AC 167 ms
9,488 KB
testcase_25 AC 20 ms
6,820 KB
testcase_26 AC 1 ms
6,820 KB
testcase_27 AC 1 ms
6,820 KB
testcase_28 AC 1 ms
6,816 KB
testcase_29 AC 52 ms
6,820 KB
testcase_30 AC 78 ms
6,820 KB
testcase_31 AC 177 ms
9,612 KB
testcase_32 AC 179 ms
9,492 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<stdio.h>
long long int modpow(long long int a, long long int n, long long int p)
{
	long long int res = 1;
	for (; n > 0; n /= 2, a = a * a % p)
		if (n % 2 > 0)
			res = res * a % p;
	return res;
}
long long int x[1000006];
int main()
{
	long long int n, m;
	scanf("%lld %lld", &m, &n);
	long long int i;
	for (i = 0; i < n; i++)
		scanf("%lld", &x[i + 1]);
	n += 2;
	x[0] = 0;
	x[n - 1] = m + 1;
	const long long int p = 998244353;
	long long int ans = 0, c, inv6 = modpow(6, p - 2, p);
	for (i = 1; i < n; i++)
	{
		c = x[i] - x[i - 1] - 1;
		ans += c % p * (c % p + 1) % p * (2 * c % p + 1) % p * inv6 % p;
		ans %= p;
	}
	printf("%lld\n", ans);
	return 0;
}
0