結果

問題 No.2941 Sigma Music Game Score Problem
ユーザー hirayuu_ychirayuu_yc
提出日時 2024-10-05 21:17:43
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 256 bytes
コンパイル時間 258 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 261,196 KB
最終ジャッジ日時 2024-10-05 21:17:56
合計ジャッジ時間 9,992 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
51,968 KB
testcase_01 AC 37 ms
51,456 KB
testcase_02 AC 40 ms
51,712 KB
testcase_03 AC 35 ms
51,968 KB
testcase_04 AC 35 ms
52,352 KB
testcase_05 AC 35 ms
51,968 KB
testcase_06 AC 36 ms
52,352 KB
testcase_07 AC 37 ms
52,096 KB
testcase_08 AC 37 ms
51,712 KB
testcase_09 AC 41 ms
60,800 KB
testcase_10 AC 40 ms
59,776 KB
testcase_11 AC 42 ms
60,160 KB
testcase_12 AC 42 ms
60,288 KB
testcase_13 AC 43 ms
61,312 KB
testcase_14 AC 43 ms
61,696 KB
testcase_15 AC 42 ms
60,032 KB
testcase_16 AC 386 ms
216,324 KB
testcase_17 AC 483 ms
249,968 KB
testcase_18 AC 481 ms
247,696 KB
testcase_19 AC 366 ms
222,188 KB
testcase_20 AC 355 ms
223,040 KB
testcase_21 AC 189 ms
126,196 KB
testcase_22 AC 185 ms
134,088 KB
testcase_23 AC 177 ms
127,496 KB
testcase_24 AC 464 ms
249,740 KB
testcase_25 AC 100 ms
96,768 KB
testcase_26 WA -
testcase_27 WA -
testcase_28 AC 36 ms
51,712 KB
testcase_29 AC 132 ms
137,464 KB
testcase_30 AC 165 ms
185,404 KB
testcase_31 AC 483 ms
261,032 KB
testcase_32 AC 483 ms
261,196 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def square_sum(x):
	return x*(x+1)*(2*x+1)//6
M,N=map(int,input().split())
if N==0:
	print(square_sum(M))
	exit()
X=[0]+list(map(int,input().split()))+[M+1]
ans=0
for i in range(1,len(X)):
	seg=X[i]-X[i-1]-1
	ans+=square_sum(seg)
	ans%=998244353
print(ans)
0