結果

問題 No.2941 Sigma Music Game Score Problem
ユーザー ntudantuda
提出日時 2024-10-18 23:26:07
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 308 ms / 2,500 ms
コード長 341 bytes
コンパイル時間 547 ms
コンパイル使用メモリ 82,360 KB
実行使用メモリ 261,516 KB
最終ジャッジ日時 2024-10-18 23:26:15
合計ジャッジ時間 6,384 ms
ジャッジサーバーID
(参考情報)
judge4 / judge6
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
52,616 KB
testcase_01 AC 36 ms
53,356 KB
testcase_02 AC 35 ms
53,380 KB
testcase_03 AC 34 ms
52,952 KB
testcase_04 AC 38 ms
52,648 KB
testcase_05 AC 36 ms
52,612 KB
testcase_06 AC 34 ms
51,960 KB
testcase_07 AC 36 ms
52,332 KB
testcase_08 AC 37 ms
53,424 KB
testcase_09 AC 42 ms
61,056 KB
testcase_10 AC 42 ms
61,448 KB
testcase_11 AC 41 ms
61,640 KB
testcase_12 AC 43 ms
61,352 KB
testcase_13 AC 43 ms
61,720 KB
testcase_14 AC 43 ms
63,584 KB
testcase_15 AC 42 ms
60,652 KB
testcase_16 AC 217 ms
208,020 KB
testcase_17 AC 252 ms
232,316 KB
testcase_18 AC 279 ms
248,552 KB
testcase_19 AC 249 ms
213,096 KB
testcase_20 AC 213 ms
218,728 KB
testcase_21 AC 122 ms
117,812 KB
testcase_22 AC 144 ms
132,220 KB
testcase_23 AC 133 ms
125,904 KB
testcase_24 AC 295 ms
251,056 KB
testcase_25 AC 88 ms
95,952 KB
testcase_26 AC 35 ms
52,332 KB
testcase_27 AC 36 ms
52,860 KB
testcase_28 AC 36 ms
52,796 KB
testcase_29 AC 138 ms
134,320 KB
testcase_30 AC 178 ms
180,528 KB
testcase_31 AC 298 ms
261,516 KB
testcase_32 AC 308 ms
261,036 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

MOD = 998244353
mr6 = pow(6, -1, MOD)

def calc(x):
    ret = (x * (x + 1)) % MOD
    ret *= (2 * x + 1)
    ret %= MOD
    ret *= mr6
    ret %= MOD
    return ret


M, N = map(int, input().split())
X = list(map(int, input().split())) + [M + 1]
pre = 0
ans = 0
for x in X:
    ans += calc(x - pre - 1)
    ans %= MOD
    pre = x
print(ans)
0