結果

問題 No.2941 Sigma Music Game Score Problem
ユーザー hirayuu_ychirayuu_yc
提出日時 2024-10-05 21:19:08
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 495 ms / 2,500 ms
コード長 266 bytes
コンパイル時間 252 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 261,292 KB
最終ジャッジ日時 2024-10-05 21:19:19
合計ジャッジ時間 7,529 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 33 ms
51,712 KB
testcase_01 AC 36 ms
51,712 KB
testcase_02 AC 36 ms
51,584 KB
testcase_03 AC 36 ms
51,712 KB
testcase_04 AC 35 ms
52,096 KB
testcase_05 AC 35 ms
52,096 KB
testcase_06 AC 34 ms
51,968 KB
testcase_07 AC 34 ms
51,968 KB
testcase_08 AC 35 ms
52,224 KB
testcase_09 AC 43 ms
61,184 KB
testcase_10 AC 41 ms
59,776 KB
testcase_11 AC 41 ms
60,032 KB
testcase_12 AC 41 ms
60,032 KB
testcase_13 AC 42 ms
61,184 KB
testcase_14 AC 42 ms
61,952 KB
testcase_15 AC 41 ms
60,032 KB
testcase_16 AC 377 ms
216,204 KB
testcase_17 AC 402 ms
250,504 KB
testcase_18 AC 446 ms
247,456 KB
testcase_19 AC 351 ms
222,712 KB
testcase_20 AC 321 ms
223,424 KB
testcase_21 AC 175 ms
126,196 KB
testcase_22 AC 204 ms
134,492 KB
testcase_23 AC 182 ms
127,876 KB
testcase_24 AC 448 ms
249,624 KB
testcase_25 AC 100 ms
96,640 KB
testcase_26 AC 35 ms
52,096 KB
testcase_27 AC 34 ms
52,096 KB
testcase_28 AC 35 ms
51,840 KB
testcase_29 AC 153 ms
137,716 KB
testcase_30 AC 159 ms
185,480 KB
testcase_31 AC 464 ms
261,292 KB
testcase_32 AC 495 ms
260,916 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)%998244353)
	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