結果

問題 No.2941 Sigma Music Game Score Problem
ユーザー miya145592miya145592
提出日時 2024-10-18 21:52:38
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 283 ms / 2,500 ms
コード長 330 bytes
コンパイル時間 460 ms
コンパイル使用メモリ 82,376 KB
実行使用メモリ 239,888 KB
最終ジャッジ日時 2024-10-18 22:41:57
合計ジャッジ時間 5,858 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
52,184 KB
testcase_01 AC 35 ms
52,728 KB
testcase_02 AC 34 ms
53,404 KB
testcase_03 AC 35 ms
53,104 KB
testcase_04 AC 35 ms
52,644 KB
testcase_05 AC 35 ms
52,488 KB
testcase_06 AC 33 ms
52,552 KB
testcase_07 AC 34 ms
52,216 KB
testcase_08 AC 35 ms
52,176 KB
testcase_09 AC 42 ms
61,920 KB
testcase_10 AC 40 ms
59,716 KB
testcase_11 AC 41 ms
60,712 KB
testcase_12 AC 40 ms
60,216 KB
testcase_13 AC 40 ms
61,292 KB
testcase_14 AC 42 ms
62,268 KB
testcase_15 AC 40 ms
60,052 KB
testcase_16 AC 202 ms
185,644 KB
testcase_17 AC 234 ms
208,456 KB
testcase_18 AC 274 ms
220,816 KB
testcase_19 AC 207 ms
190,036 KB
testcase_20 AC 202 ms
199,920 KB
testcase_21 AC 113 ms
113,452 KB
testcase_22 AC 134 ms
127,652 KB
testcase_23 AC 129 ms
121,272 KB
testcase_24 AC 275 ms
235,236 KB
testcase_25 AC 81 ms
92,748 KB
testcase_26 AC 35 ms
51,936 KB
testcase_27 AC 34 ms
52,908 KB
testcase_28 AC 35 ms
52,416 KB
testcase_29 AC 119 ms
128,236 KB
testcase_30 AC 148 ms
170,684 KB
testcase_31 AC 283 ms
239,796 KB
testcase_32 AC 283 ms
239,888 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline
MOD = 998244353
M, N = map(int, input().split())
X = list(map(int, input().split()))
inv = pow(6, MOD-2, MOD)
ans = 0
bk = 1
for x in X:
    n = x-bk
    ans += n*(n+1)%MOD*(2*n+1)%MOD*inv%MOD
    ans %= MOD
    bk = x+1
n = M+1-bk
ans += n*(n+1)%MOD*(2*n+1)%MOD*inv%MOD
ans %= MOD
print(ans)
0