結果

問題 No.2941 Sigma Music Game Score Problem
ユーザー sasa8uyauyasasa8uyauya
提出日時 2024-10-18 21:48:50
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 408 ms / 2,500 ms
コード長 189 bytes
コンパイル時間 369 ms
コンパイル使用メモリ 82,468 KB
実行使用メモリ 261,332 KB
最終ジャッジ日時 2024-10-18 22:38:13
合計ジャッジ時間 6,613 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
52,400 KB
testcase_01 AC 34 ms
52,064 KB
testcase_02 AC 35 ms
53,360 KB
testcase_03 AC 35 ms
52,596 KB
testcase_04 AC 36 ms
52,556 KB
testcase_05 AC 35 ms
52,900 KB
testcase_06 AC 35 ms
53,788 KB
testcase_07 AC 35 ms
52,464 KB
testcase_08 AC 36 ms
52,400 KB
testcase_09 AC 45 ms
63,564 KB
testcase_10 AC 42 ms
60,748 KB
testcase_11 AC 45 ms
62,448 KB
testcase_12 AC 44 ms
61,904 KB
testcase_13 AC 44 ms
63,932 KB
testcase_14 AC 43 ms
64,436 KB
testcase_15 AC 40 ms
60,888 KB
testcase_16 AC 291 ms
210,848 KB
testcase_17 AC 326 ms
244,496 KB
testcase_18 AC 375 ms
249,368 KB
testcase_19 AC 304 ms
216,700 KB
testcase_20 AC 266 ms
218,364 KB
testcase_21 AC 147 ms
124,348 KB
testcase_22 AC 151 ms
131,968 KB
testcase_23 AC 143 ms
125,272 KB
testcase_24 AC 375 ms
250,388 KB
testcase_25 AC 86 ms
95,832 KB
testcase_26 AC 34 ms
52,548 KB
testcase_27 AC 35 ms
52,332 KB
testcase_28 AC 33 ms
52,688 KB
testcase_29 AC 126 ms
134,276 KB
testcase_30 AC 153 ms
180,816 KB
testcase_31 AC 408 ms
260,896 KB
testcase_32 AC 390 ms
261,332 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

m,n=map(int,input().split())
x=list(map(int,input().split()))+[m+1]
M=998244353
i6=pow(6,M-2,M)
f=lambda n:i6*n*(n+1)*(2*n+1)%M
now=0
g=0
for v in x:
  g+=f(v-1-now)
  g%=M
  now=v
print(g)
0