結果

問題 No.2941 Sigma Music Game Score Problem
ユーザー rlangevinrlangevin
提出日時 2024-10-20 12:15:05
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 505 ms / 2,500 ms
コード長 233 bytes
コンパイル時間 683 ms
コンパイル使用メモリ 82,220 KB
実行使用メモリ 262,012 KB
最終ジャッジ日時 2024-10-20 12:15:16
合計ジャッジ時間 8,549 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
53,948 KB
testcase_01 AC 35 ms
53,304 KB
testcase_02 AC 34 ms
52,460 KB
testcase_03 AC 35 ms
51,824 KB
testcase_04 AC 39 ms
52,368 KB
testcase_05 AC 34 ms
52,500 KB
testcase_06 AC 34 ms
53,352 KB
testcase_07 AC 35 ms
52,472 KB
testcase_08 AC 34 ms
53,752 KB
testcase_09 AC 42 ms
61,848 KB
testcase_10 AC 41 ms
59,732 KB
testcase_11 AC 40 ms
60,204 KB
testcase_12 AC 40 ms
61,036 KB
testcase_13 AC 40 ms
62,116 KB
testcase_14 AC 40 ms
62,092 KB
testcase_15 AC 40 ms
60,532 KB
testcase_16 AC 505 ms
217,024 KB
testcase_17 AC 477 ms
251,976 KB
testcase_18 AC 454 ms
249,256 KB
testcase_19 AC 346 ms
223,744 KB
testcase_20 AC 308 ms
223,964 KB
testcase_21 AC 173 ms
126,528 KB
testcase_22 AC 181 ms
134,096 KB
testcase_23 AC 171 ms
127,032 KB
testcase_24 AC 454 ms
250,544 KB
testcase_25 AC 99 ms
97,012 KB
testcase_26 AC 35 ms
52,248 KB
testcase_27 AC 35 ms
51,996 KB
testcase_28 AC 35 ms
51,876 KB
testcase_29 AC 132 ms
137,480 KB
testcase_30 AC 162 ms
185,620 KB
testcase_31 AC 461 ms
261,600 KB
testcase_32 AC 460 ms
262,012 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

M, N = map(int, input().split())
X = [0] + list(map(int, input().split())) + [M + 1]
ans = 0
mod = 998244353
for i in range(len(X) - 1):
    d = X[i + 1] - X[i] - 1
    ans += d * (d + 1) * (2 * d + 1) // 6
    ans %= mod

print(ans)
0