結果

問題 No.2941 Sigma Music Game Score Problem
ユーザー flippergoflippergo
提出日時 2024-10-31 12:33:22
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 531 ms / 2,500 ms
コード長 220 bytes
コンパイル時間 568 ms
コンパイル使用メモリ 82,032 KB
実行使用メモリ 261,344 KB
最終ジャッジ日時 2024-10-31 12:33:34
合計ジャッジ時間 11,266 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
53,408 KB
testcase_01 AC 35 ms
53,984 KB
testcase_02 AC 35 ms
52,424 KB
testcase_03 AC 36 ms
51,992 KB
testcase_04 AC 35 ms
52,492 KB
testcase_05 AC 35 ms
52,556 KB
testcase_06 AC 35 ms
51,812 KB
testcase_07 AC 36 ms
52,332 KB
testcase_08 AC 35 ms
53,624 KB
testcase_09 AC 46 ms
60,956 KB
testcase_10 AC 41 ms
59,476 KB
testcase_11 AC 42 ms
60,240 KB
testcase_12 AC 41 ms
61,540 KB
testcase_13 AC 42 ms
61,924 KB
testcase_14 AC 43 ms
62,140 KB
testcase_15 AC 44 ms
60,500 KB
testcase_16 AC 524 ms
216,748 KB
testcase_17 AC 531 ms
251,900 KB
testcase_18 AC 467 ms
248,320 KB
testcase_19 AC 356 ms
222,312 KB
testcase_20 AC 332 ms
224,304 KB
testcase_21 AC 174 ms
125,904 KB
testcase_22 AC 187 ms
134,140 KB
testcase_23 AC 179 ms
127,208 KB
testcase_24 AC 483 ms
251,060 KB
testcase_25 AC 101 ms
96,552 KB
testcase_26 AC 36 ms
52,532 KB
testcase_27 AC 36 ms
54,072 KB
testcase_28 AC 36 ms
53,556 KB
testcase_29 AC 134 ms
137,436 KB
testcase_30 AC 163 ms
185,240 KB
testcase_31 AC 500 ms
261,152 KB
testcase_32 AC 476 ms
261,344 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

M,N = map(int,input().split())
X = [0]+list(map(int,input().split()))+[M+1]
MOD = 998244353
ans = 0
for i in range(1,N+2):
    x0 = X[i-1]
    x1 = X[i]
    n = x1-x0-1
    ans = (ans+(n*(n+1)*(2*n+1))//6)%MOD
print(ans)
0