結果

問題 No.2941 Sigma Music Game Score Problem
ユーザー noriaokinoriaoki
提出日時 2024-10-18 23:00:00
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 491 ms / 2,500 ms
コード長 210 bytes
コンパイル時間 473 ms
コンパイル使用メモリ 82,588 KB
実行使用メモリ 261,200 KB
最終ジャッジ日時 2024-10-18 23:00:55
合計ジャッジ時間 7,521 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
51,880 KB
testcase_01 AC 42 ms
53,852 KB
testcase_02 AC 37 ms
52,188 KB
testcase_03 AC 37 ms
53,496 KB
testcase_04 AC 37 ms
52,760 KB
testcase_05 AC 37 ms
52,856 KB
testcase_06 AC 38 ms
52,748 KB
testcase_07 AC 40 ms
52,492 KB
testcase_08 AC 36 ms
53,352 KB
testcase_09 AC 43 ms
60,984 KB
testcase_10 AC 42 ms
59,596 KB
testcase_11 AC 42 ms
61,796 KB
testcase_12 AC 43 ms
59,788 KB
testcase_13 AC 43 ms
62,460 KB
testcase_14 AC 44 ms
61,976 KB
testcase_15 AC 43 ms
60,516 KB
testcase_16 AC 356 ms
216,424 KB
testcase_17 AC 415 ms
250,572 KB
testcase_18 AC 491 ms
248,908 KB
testcase_19 AC 386 ms
222,872 KB
testcase_20 AC 329 ms
223,840 KB
testcase_21 AC 174 ms
126,408 KB
testcase_22 AC 188 ms
134,184 KB
testcase_23 AC 181 ms
126,744 KB
testcase_24 AC 461 ms
251,732 KB
testcase_25 AC 110 ms
96,664 KB
testcase_26 AC 37 ms
52,320 KB
testcase_27 AC 36 ms
52,540 KB
testcase_28 AC 36 ms
52,860 KB
testcase_29 AC 133 ms
137,632 KB
testcase_30 AC 168 ms
186,084 KB
testcase_31 AC 486 ms
260,844 KB
testcase_32 AC 482 ms
261,200 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(n+1):
    k = x[i+1] - x[i] - 1
    ans += k*(k+1)*(2*k+1)//6
    ans %= mod
print(ans)
0