結果

問題 No.2941 Sigma Music Game Score Problem
ユーザー tassei903tassei903
提出日時 2024-10-18 21:47:31
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 444 ms / 2,500 ms
コード長 666 bytes
コンパイル時間 407 ms
コンパイル使用メモリ 82,600 KB
実行使用メモリ 261,628 KB
最終ジャッジ日時 2024-10-18 22:37:35
合計ジャッジ時間 7,153 ms
ジャッジサーバーID
(参考情報)
judge1 / judge
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
52,792 KB
testcase_01 AC 35 ms
53,440 KB
testcase_02 AC 36 ms
54,380 KB
testcase_03 AC 35 ms
53,784 KB
testcase_04 AC 36 ms
52,520 KB
testcase_05 AC 36 ms
52,204 KB
testcase_06 AC 35 ms
52,212 KB
testcase_07 AC 41 ms
53,244 KB
testcase_08 AC 36 ms
53,160 KB
testcase_09 AC 42 ms
62,148 KB
testcase_10 AC 44 ms
60,864 KB
testcase_11 AC 42 ms
60,248 KB
testcase_12 AC 42 ms
60,504 KB
testcase_13 AC 44 ms
63,288 KB
testcase_14 AC 45 ms
62,756 KB
testcase_15 AC 42 ms
61,096 KB
testcase_16 AC 318 ms
217,212 KB
testcase_17 AC 361 ms
250,760 KB
testcase_18 AC 401 ms
248,064 KB
testcase_19 AC 325 ms
222,232 KB
testcase_20 AC 312 ms
223,180 KB
testcase_21 AC 212 ms
126,408 KB
testcase_22 AC 176 ms
134,580 KB
testcase_23 AC 169 ms
127,328 KB
testcase_24 AC 410 ms
250,696 KB
testcase_25 AC 93 ms
97,068 KB
testcase_26 AC 34 ms
53,080 KB
testcase_27 AC 35 ms
53,036 KB
testcase_28 AC 35 ms
53,700 KB
testcase_29 AC 126 ms
137,384 KB
testcase_30 AC 150 ms
185,516 KB
testcase_31 AC 444 ms
261,628 KB
testcase_32 AC 428 ms
261,364 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = lambda :sys.stdin.readline()[:-1]
ni = lambda :int(input())
na = lambda :list(map(int,input().split()))
yes = lambda :print("yes");Yes = lambda :print("Yes");YES = lambda : print("YES")
no = lambda :print("no");No = lambda :print("No");NO = lambda : print("NO")
#######################################################################
m, n = na()
mod = 998244353
x = [0] + na() + [m + 1]
s = 0

ans = 0

def f(s, h):# s^2 + (s + 1) ^ 2 + ... + (s + h - 1) ^ 2
    return g(s + h - 1) - g(s - 1)

def g(x):
    return x * (x + 1) * (2 * x + 1) // 6 % mod

for i in range(n + 1):
    h = x[i + 1] - x[i] - 1
    ans += g(h)
    ans %= mod

print(ans)
0