結果

問題 No.2941 Sigma Music Game Score Problem
ユーザー nouka28nouka28
提出日時 2024-10-18 21:33:27
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 508 ms / 2,500 ms
コード長 200 bytes
コンパイル時間 641 ms
コンパイル使用メモリ 82,160 KB
実行使用メモリ 261,656 KB
最終ジャッジ日時 2024-10-18 22:20:25
合計ジャッジ時間 7,342 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 62 ms
52,540 KB
testcase_01 AC 36 ms
52,480 KB
testcase_02 AC 36 ms
52,964 KB
testcase_03 AC 36 ms
51,876 KB
testcase_04 AC 36 ms
52,612 KB
testcase_05 AC 36 ms
52,492 KB
testcase_06 AC 36 ms
52,072 KB
testcase_07 AC 38 ms
53,468 KB
testcase_08 AC 36 ms
52,868 KB
testcase_09 AC 42 ms
61,652 KB
testcase_10 AC 41 ms
60,660 KB
testcase_11 AC 43 ms
61,196 KB
testcase_12 AC 42 ms
59,876 KB
testcase_13 AC 42 ms
62,036 KB
testcase_14 AC 43 ms
62,560 KB
testcase_15 AC 41 ms
59,912 KB
testcase_16 AC 347 ms
222,124 KB
testcase_17 AC 403 ms
257,132 KB
testcase_18 AC 480 ms
256,064 KB
testcase_19 AC 358 ms
228,740 KB
testcase_20 AC 320 ms
227,932 KB
testcase_21 AC 174 ms
128,324 KB
testcase_22 AC 183 ms
136,264 KB
testcase_23 AC 176 ms
129,252 KB
testcase_24 AC 508 ms
250,792 KB
testcase_25 AC 109 ms
97,528 KB
testcase_26 AC 36 ms
52,108 KB
testcase_27 AC 36 ms
53,200 KB
testcase_28 AC 37 ms
52,552 KB
testcase_29 AC 132 ms
141,132 KB
testcase_30 AC 162 ms
190,524 KB
testcase_31 AC 475 ms
261,060 KB
testcase_32 AC 481 ms
261,656 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

x=[0]+x[:]+[m+1]

mod=998244353
ans=0
for i in range(len(x)-1):
    N=x[i+1]-x[i]-1
    ans+=N*(N+1)*(2*N+1)//6

    ans%=mod

print(ans)
0