結果

問題 No.2941 Sigma Music Game Score Problem
ユーザー Tamiji153Tamiji153
提出日時 2024-11-30 12:33:07
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 479 ms / 2,500 ms
コード長 197 bytes
コンパイル時間 704 ms
コンパイル使用メモリ 82,492 KB
実行使用メモリ 261,184 KB
最終ジャッジ日時 2024-11-30 12:33:18
合計ジャッジ時間 10,323 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
53,136 KB
testcase_01 AC 35 ms
52,628 KB
testcase_02 AC 37 ms
52,772 KB
testcase_03 AC 38 ms
53,296 KB
testcase_04 AC 40 ms
52,000 KB
testcase_05 AC 38 ms
52,312 KB
testcase_06 AC 37 ms
52,436 KB
testcase_07 AC 36 ms
52,740 KB
testcase_08 AC 35 ms
52,552 KB
testcase_09 AC 41 ms
61,368 KB
testcase_10 AC 41 ms
59,988 KB
testcase_11 AC 41 ms
60,744 KB
testcase_12 AC 43 ms
60,328 KB
testcase_13 AC 42 ms
62,012 KB
testcase_14 AC 42 ms
63,412 KB
testcase_15 AC 42 ms
61,124 KB
testcase_16 AC 336 ms
204,724 KB
testcase_17 AC 416 ms
238,172 KB
testcase_18 AC 427 ms
241,480 KB
testcase_19 AC 338 ms
210,908 KB
testcase_20 AC 341 ms
213,584 KB
testcase_21 AC 175 ms
122,824 KB
testcase_22 AC 187 ms
129,952 KB
testcase_23 AC 173 ms
123,532 KB
testcase_24 AC 424 ms
250,552 KB
testcase_25 AC 94 ms
95,120 KB
testcase_26 AC 40 ms
52,544 KB
testcase_27 AC 34 ms
52,768 KB
testcase_28 AC 36 ms
53,344 KB
testcase_29 AC 125 ms
131,468 KB
testcase_30 AC 160 ms
176,020 KB
testcase_31 AC 463 ms
261,104 KB
testcase_32 AC 479 ms
261,184 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

m,n=map(int,input().split())
A=[0]+list(map(int,input().split()))
A.append(m+1)
n+=2
ans=0
for i in range(1,n):
	ans+=(A[i]-A[i-1]-1)*(A[i]-A[i-1])*(2*(A[i]-A[i-1])-1)//6
	ans%=998244353
print(ans)
0