結果

問題 No.2941 Sigma Music Game Score Problem
ユーザー ルクルク
提出日時 2024-10-18 22:50:15
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 499 ms / 2,500 ms
コード長 307 bytes
コンパイル時間 316 ms
コンパイル使用メモリ 82,252 KB
実行使用メモリ 261,664 KB
最終ジャッジ日時 2024-10-18 22:55:41
合計ジャッジ時間 7,688 ms
ジャッジサーバーID
(参考情報)
judge8 / judge6
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
52,492 KB
testcase_01 AC 38 ms
52,176 KB
testcase_02 AC 36 ms
52,564 KB
testcase_03 AC 35 ms
53,752 KB
testcase_04 AC 35 ms
52,324 KB
testcase_05 AC 36 ms
52,700 KB
testcase_06 AC 36 ms
52,284 KB
testcase_07 AC 36 ms
52,180 KB
testcase_08 AC 35 ms
53,132 KB
testcase_09 AC 41 ms
62,388 KB
testcase_10 AC 40 ms
60,032 KB
testcase_11 AC 41 ms
59,884 KB
testcase_12 AC 40 ms
60,012 KB
testcase_13 AC 41 ms
61,336 KB
testcase_14 AC 43 ms
61,608 KB
testcase_15 AC 42 ms
60,460 KB
testcase_16 AC 339 ms
199,192 KB
testcase_17 AC 440 ms
232,528 KB
testcase_18 AC 434 ms
234,324 KB
testcase_19 AC 374 ms
204,960 KB
testcase_20 AC 320 ms
209,128 KB
testcase_21 AC 178 ms
120,120 KB
testcase_22 AC 178 ms
127,768 KB
testcase_23 AC 171 ms
121,184 KB
testcase_24 AC 471 ms
250,336 KB
testcase_25 AC 97 ms
94,488 KB
testcase_26 AC 37 ms
53,424 KB
testcase_27 AC 35 ms
52,668 KB
testcase_28 AC 36 ms
53,232 KB
testcase_29 AC 126 ms
128,224 KB
testcase_30 AC 151 ms
170,980 KB
testcase_31 AC 499 ms
261,456 KB
testcase_32 AC 475 ms
261,664 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

m,n=map(int,input().split())
a = list(map(int, input().split()))

score = 0
now = 1
smallMOD = 998244353
for i in range(n):
  k = a[i] - now
  score += k * (k + 1) * (2 * k + 1) // 6
  score %= smallMOD
  now = a[i] + 1
k = m + 1 - now
score += k * (k + 1) * (2 * k + 1) // 6
score %= smallMOD
print(score)
0