結果

問題 No.2941 Sigma Music Game Score Problem
ユーザー mkawa2mkawa2
提出日時 2024-10-18 22:51:41
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 515 ms / 2,500 ms
コード長 909 bytes
コンパイル時間 450 ms
コンパイル使用メモリ 82,364 KB
実行使用メモリ 261,436 KB
最終ジャッジ日時 2024-10-18 22:56:08
合計ジャッジ時間 7,489 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,888 KB
testcase_01 AC 36 ms
53,100 KB
testcase_02 AC 37 ms
53,992 KB
testcase_03 AC 38 ms
53,688 KB
testcase_04 AC 37 ms
52,616 KB
testcase_05 AC 37 ms
52,336 KB
testcase_06 AC 42 ms
53,820 KB
testcase_07 AC 37 ms
52,684 KB
testcase_08 AC 37 ms
52,744 KB
testcase_09 AC 45 ms
61,496 KB
testcase_10 AC 42 ms
60,604 KB
testcase_11 AC 50 ms
60,352 KB
testcase_12 AC 44 ms
62,232 KB
testcase_13 AC 43 ms
61,380 KB
testcase_14 AC 44 ms
62,172 KB
testcase_15 AC 43 ms
60,956 KB
testcase_16 AC 359 ms
205,804 KB
testcase_17 AC 400 ms
239,432 KB
testcase_18 AC 442 ms
244,732 KB
testcase_19 AC 359 ms
210,812 KB
testcase_20 AC 342 ms
213,888 KB
testcase_21 AC 172 ms
126,728 KB
testcase_22 AC 185 ms
135,316 KB
testcase_23 AC 180 ms
127,296 KB
testcase_24 AC 449 ms
252,232 KB
testcase_25 AC 100 ms
95,240 KB
testcase_26 AC 36 ms
52,456 KB
testcase_27 AC 36 ms
52,744 KB
testcase_28 AC 36 ms
53,240 KB
testcase_29 AC 125 ms
137,244 KB
testcase_30 AC 158 ms
186,020 KB
testcase_31 AC 515 ms
261,436 KB
testcase_32 AC 485 ms
260,856 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys

sys.setrecursionlimit(200005)
# sys.set_int_max_str_digits(200005)
int1 = lambda x: int(x)-1
pDB = lambda *x: print(*x, end="\n", file=sys.stderr)
p2D = lambda x: print(*x, sep="\n", end="\n\n", file=sys.stderr)
def II(): return int(sys.stdin.readline())
def LI(): return list(map(int, sys.stdin.readline().split()))
def LLI(rows_number): return [LI() for _ in range(rows_number)]
def LI1(): return list(map(int1, sys.stdin.readline().split()))
def LLI1(rows_number): return [LI1() for _ in range(rows_number)]
def SI(): return sys.stdin.readline().rstrip()

dij = [(0, 1), (-1, 0), (0, -1), (1, 0)]
# dij = [(0, 1), (-1, 0), (0, -1), (1, 0), (1, 1), (1, -1), (-1, 1), (-1, -1)]
# inf = -1-(-1 << 31)
inf = -1-(-1 << 62)

# md = 10**9+7
md = 998244353

f=lambda n:n*(n+1)*(2*n+1)//6

m,n=LI()
xx=[0]+LI()+[m+1]
ans=0
for i in range(n+1):
    c=xx[i+1]-xx[i]-1
    ans+=f(c)
    ans%=md
print(ans)
0