結果

問題 No.2941 Sigma Music Game Score Problem
ユーザー 寝癖寝癖
提出日時 2024-10-18 22:11:24
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 448 ms / 2,500 ms
コード長 225 bytes
コンパイル時間 359 ms
コンパイル使用メモリ 82,016 KB
実行使用メモリ 219,220 KB
最終ジャッジ日時 2024-10-18 22:47:41
合計ジャッジ時間 7,110 ms
ジャッジサーバーID
(参考情報)
judge5 / judge8
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
52,992 KB
testcase_01 AC 36 ms
52,068 KB
testcase_02 AC 36 ms
52,828 KB
testcase_03 AC 37 ms
52,832 KB
testcase_04 AC 37 ms
52,472 KB
testcase_05 AC 36 ms
53,064 KB
testcase_06 AC 36 ms
52,864 KB
testcase_07 AC 41 ms
53,012 KB
testcase_08 AC 36 ms
53,276 KB
testcase_09 AC 43 ms
61,964 KB
testcase_10 AC 43 ms
59,712 KB
testcase_11 AC 43 ms
60,112 KB
testcase_12 AC 43 ms
60,088 KB
testcase_13 AC 44 ms
61,400 KB
testcase_14 AC 43 ms
61,388 KB
testcase_15 AC 43 ms
59,808 KB
testcase_16 AC 331 ms
176,712 KB
testcase_17 AC 374 ms
197,832 KB
testcase_18 AC 423 ms
200,144 KB
testcase_19 AC 333 ms
177,056 KB
testcase_20 AC 295 ms
181,936 KB
testcase_21 AC 160 ms
111,028 KB
testcase_22 AC 174 ms
116,568 KB
testcase_23 AC 168 ms
111,844 KB
testcase_24 AC 446 ms
207,812 KB
testcase_25 AC 96 ms
90,336 KB
testcase_26 AC 36 ms
52,032 KB
testcase_27 AC 36 ms
53,248 KB
testcase_28 AC 36 ms
52,444 KB
testcase_29 AC 116 ms
112,400 KB
testcase_30 AC 137 ms
145,388 KB
testcase_31 AC 448 ms
218,760 KB
testcase_32 AC 448 ms
219,220 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

ans = 0
mod = 998244353
for i in range(len(X)-1):
    n = X[i+1] - X[i]
    ans += n * (n-1) * (2*n-1) // 6
    ans %= mod
print(ans)
0