結果

問題 No.2941 Sigma Music Game Score Problem
ユーザー detteiuudetteiuu
提出日時 2024-10-18 21:57:54
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 528 ms / 2,500 ms
コード長 310 bytes
コンパイル時間 596 ms
コンパイル使用メモリ 82,288 KB
実行使用メモリ 261,364 KB
最終ジャッジ日時 2024-10-18 22:43:33
合計ジャッジ時間 7,475 ms
ジャッジサーバーID
(参考情報)
judge4 / judge6
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 33 ms
53,228 KB
testcase_01 AC 35 ms
52,348 KB
testcase_02 AC 35 ms
52,656 KB
testcase_03 AC 38 ms
52,308 KB
testcase_04 AC 35 ms
51,944 KB
testcase_05 AC 35 ms
52,544 KB
testcase_06 AC 35 ms
53,540 KB
testcase_07 AC 35 ms
54,176 KB
testcase_08 AC 35 ms
51,940 KB
testcase_09 AC 49 ms
68,192 KB
testcase_10 AC 48 ms
65,008 KB
testcase_11 AC 48 ms
66,200 KB
testcase_12 AC 47 ms
64,684 KB
testcase_13 AC 48 ms
70,200 KB
testcase_14 AC 51 ms
71,636 KB
testcase_15 AC 47 ms
65,436 KB
testcase_16 AC 342 ms
216,616 KB
testcase_17 AC 411 ms
250,416 KB
testcase_18 AC 528 ms
248,248 KB
testcase_19 AC 357 ms
224,196 KB
testcase_20 AC 326 ms
224,664 KB
testcase_21 AC 179 ms
127,392 KB
testcase_22 AC 195 ms
135,016 KB
testcase_23 AC 187 ms
128,240 KB
testcase_24 AC 448 ms
251,632 KB
testcase_25 AC 115 ms
97,492 KB
testcase_26 AC 35 ms
53,928 KB
testcase_27 AC 36 ms
54,248 KB
testcase_28 AC 35 ms
53,284 KB
testcase_29 AC 203 ms
143,072 KB
testcase_30 AC 280 ms
203,244 KB
testcase_31 AC 467 ms
261,364 KB
testcase_32 AC 470 ms
261,028 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

M, N = map(int, input().split())
X = [0]+list(map(int, input().split()))+[M+1]

def inverse(n, d):
    return n * pow(d, -1, MOD) % MOD

def func(n):
    return inverse(n*(n+1)%MOD*(2*n+1)%MOD, 6)

MOD = 998244353
ans = 0
for i in range(N+1):
    n = X[i+1]-X[i]-1
    ans += func(n)
    ans %= MOD

print(ans)
0