結果

問題 No.2941 Sigma Music Game Score Problem
ユーザー hitonanodehitonanode
提出日時 2024-10-18 21:46:48
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 400 ms / 2,500 ms
コード長 211 bytes
コンパイル時間 568 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 261,536 KB
最終ジャッジ日時 2024-10-18 22:36:43
合計ジャッジ時間 7,009 ms
ジャッジサーバーID
(参考情報)
judge / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
52,608 KB
testcase_01 AC 33 ms
52,740 KB
testcase_02 AC 34 ms
51,828 KB
testcase_03 AC 35 ms
53,124 KB
testcase_04 AC 35 ms
52,136 KB
testcase_05 AC 34 ms
51,904 KB
testcase_06 AC 35 ms
53,560 KB
testcase_07 AC 35 ms
52,504 KB
testcase_08 AC 35 ms
52,804 KB
testcase_09 AC 42 ms
60,780 KB
testcase_10 AC 40 ms
60,908 KB
testcase_11 AC 39 ms
61,360 KB
testcase_12 AC 40 ms
61,156 KB
testcase_13 AC 40 ms
61,044 KB
testcase_14 AC 41 ms
62,552 KB
testcase_15 AC 49 ms
59,848 KB
testcase_16 AC 303 ms
222,420 KB
testcase_17 AC 338 ms
258,128 KB
testcase_18 AC 385 ms
248,260 KB
testcase_19 AC 347 ms
228,104 KB
testcase_20 AC 282 ms
228,012 KB
testcase_21 AC 154 ms
128,932 KB
testcase_22 AC 191 ms
136,444 KB
testcase_23 AC 159 ms
128,892 KB
testcase_24 AC 400 ms
251,056 KB
testcase_25 AC 90 ms
97,460 KB
testcase_26 AC 35 ms
52,128 KB
testcase_27 AC 34 ms
53,424 KB
testcase_28 AC 34 ms
53,024 KB
testcase_29 AC 127 ms
140,628 KB
testcase_30 AC 151 ms
190,112 KB
testcase_31 AC 399 ms
261,536 KB
testcase_32 AC 397 ms
261,104 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

ret = 0
for a, b in zip(X, X[1:]):
    d = b - a - 1
    ret += d * (d + 1) * (2 * d + 1) // 6

print(ret % 998244353)
0