結果

問題 No.2941 Sigma Music Game Score Problem
ユーザー ra5anchorra5anchor
提出日時 2024-10-18 22:05:04
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,370 ms / 2,500 ms
コード長 472 bytes
コンパイル時間 375 ms
コンパイル使用メモリ 82,032 KB
実行使用メモリ 264,524 KB
最終ジャッジ日時 2024-10-18 22:45:44
合計ジャッジ時間 14,978 ms
ジャッジサーバーID
(参考情報)
judge7 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
52,200 KB
testcase_01 AC 36 ms
53,164 KB
testcase_02 AC 35 ms
53,068 KB
testcase_03 AC 36 ms
52,212 KB
testcase_04 AC 35 ms
52,276 KB
testcase_05 AC 35 ms
52,544 KB
testcase_06 AC 37 ms
53,180 KB
testcase_07 AC 38 ms
52,796 KB
testcase_08 AC 37 ms
53,568 KB
testcase_09 AC 57 ms
66,940 KB
testcase_10 AC 51 ms
64,232 KB
testcase_11 AC 51 ms
64,460 KB
testcase_12 AC 51 ms
64,744 KB
testcase_13 AC 57 ms
68,004 KB
testcase_14 AC 60 ms
67,768 KB
testcase_15 AC 50 ms
64,220 KB
testcase_16 AC 1,012 ms
251,500 KB
testcase_17 AC 1,158 ms
264,424 KB
testcase_18 AC 1,342 ms
256,524 KB
testcase_19 AC 1,029 ms
258,060 KB
testcase_20 AC 877 ms
255,328 KB
testcase_21 AC 413 ms
138,080 KB
testcase_22 AC 472 ms
147,428 KB
testcase_23 AC 421 ms
139,180 KB
testcase_24 AC 1,342 ms
258,112 KB
testcase_25 AC 208 ms
101,908 KB
testcase_26 AC 36 ms
52,944 KB
testcase_27 AC 36 ms
52,452 KB
testcase_28 AC 36 ms
52,188 KB
testcase_29 AC 124 ms
127,880 KB
testcase_30 AC 150 ms
170,672 KB
testcase_31 AC 1,361 ms
264,524 KB
testcase_32 AC 1,370 ms
263,764 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

M, N = map(int, input().split())
X = list(map(int, input().split()))
MOD = 998244353

def inv(x):
    return pow(x, MOD-2, MOD)
def sm(x):
    res = x * (x+1) * (2*x+1)
    res *= inv(6)
    res %= MOD
    return res

L = []
prev = 0
for i in range(N):
    x = X[i]
    if x - prev - 1 > 0:
        L.append(x - prev - 1)
    prev = x
x = M+1
if x - prev - 1 > 0:
    L.append(x - prev - 1)
# print(L)

ans = 0
for item in L:
    ans += sm(item)
    ans %= MOD
print(ans)
0