結果

問題 No.2941 Sigma Music Game Score Problem
ユーザー timitimi
提出日時 2024-10-18 22:06:39
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 479 ms / 2,500 ms
コード長 230 bytes
コンパイル時間 532 ms
コンパイル使用メモリ 82,236 KB
実行使用メモリ 261,260 KB
最終ジャッジ日時 2024-10-18 22:46:04
合計ジャッジ時間 8,021 ms
ジャッジサーバーID
(参考情報)
judge1 / judge6
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
51,872 KB
testcase_01 AC 38 ms
52,268 KB
testcase_02 AC 36 ms
52,292 KB
testcase_03 AC 36 ms
52,956 KB
testcase_04 AC 37 ms
53,136 KB
testcase_05 AC 37 ms
52,616 KB
testcase_06 AC 37 ms
52,192 KB
testcase_07 AC 37 ms
53,352 KB
testcase_08 AC 38 ms
52,468 KB
testcase_09 AC 42 ms
61,668 KB
testcase_10 AC 43 ms
60,692 KB
testcase_11 AC 43 ms
60,048 KB
testcase_12 AC 44 ms
61,676 KB
testcase_13 AC 45 ms
62,404 KB
testcase_14 AC 44 ms
62,092 KB
testcase_15 AC 43 ms
61,116 KB
testcase_16 AC 342 ms
205,404 KB
testcase_17 AC 402 ms
238,620 KB
testcase_18 AC 479 ms
241,268 KB
testcase_19 AC 452 ms
211,256 KB
testcase_20 AC 322 ms
214,368 KB
testcase_21 AC 171 ms
122,044 KB
testcase_22 AC 207 ms
129,712 KB
testcase_23 AC 208 ms
123,584 KB
testcase_24 AC 454 ms
251,000 KB
testcase_25 AC 117 ms
95,188 KB
testcase_26 AC 43 ms
53,132 KB
testcase_27 AC 40 ms
53,852 KB
testcase_28 AC 38 ms
52,980 KB
testcase_29 AC 129 ms
130,900 KB
testcase_30 AC 157 ms
176,160 KB
testcase_31 AC 478 ms
261,260 KB
testcase_32 AC 476 ms
261,196 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

mod=998244353
M,N=map(int, input().split())
A=list(map(int, input().split()))
A=[0]+A
A.append(M+1)
def f(x):
  a=x*(x+1)*(2*x+1)//6
  return a 

ans=0
for i in range(len(A)-1):
  p=A[i+1]-A[i]-1
  ans+=f(p)
  ans%=mod
print(ans)
0