結果

問題 No.2941 Sigma Music Game Score Problem
ユーザー tkykwtnbtkykwtnb
提出日時 2024-10-18 22:27:41
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 409 ms / 2,500 ms
コード長 196 bytes
コンパイル時間 254 ms
コンパイル使用メモリ 82,300 KB
実行使用メモリ 261,844 KB
最終ジャッジ日時 2024-10-18 22:51:17
合計ジャッジ時間 6,777 ms
ジャッジサーバーID
(参考情報)
judge7 / judge
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 33 ms
52,972 KB
testcase_01 AC 33 ms
52,572 KB
testcase_02 AC 35 ms
53,420 KB
testcase_03 AC 34 ms
52,696 KB
testcase_04 AC 34 ms
52,068 KB
testcase_05 AC 36 ms
53,652 KB
testcase_06 AC 36 ms
52,072 KB
testcase_07 AC 34 ms
52,868 KB
testcase_08 AC 34 ms
52,964 KB
testcase_09 AC 39 ms
61,972 KB
testcase_10 AC 38 ms
59,848 KB
testcase_11 AC 39 ms
61,120 KB
testcase_12 AC 39 ms
60,148 KB
testcase_13 AC 41 ms
60,660 KB
testcase_14 AC 40 ms
61,480 KB
testcase_15 AC 40 ms
60,472 KB
testcase_16 AC 280 ms
199,596 KB
testcase_17 AC 350 ms
232,324 KB
testcase_18 AC 389 ms
234,460 KB
testcase_19 AC 282 ms
204,752 KB
testcase_20 AC 265 ms
208,876 KB
testcase_21 AC 153 ms
120,128 KB
testcase_22 AC 153 ms
127,392 KB
testcase_23 AC 155 ms
120,504 KB
testcase_24 AC 385 ms
250,760 KB
testcase_25 AC 84 ms
94,456 KB
testcase_26 AC 33 ms
52,444 KB
testcase_27 AC 33 ms
52,240 KB
testcase_28 AC 34 ms
52,656 KB
testcase_29 AC 125 ms
127,748 KB
testcase_30 AC 160 ms
170,352 KB
testcase_31 AC 391 ms
261,364 KB
testcase_32 AC 409 ms
261,844 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

M,N=map(int,input().split())
X=list(map(int,input().split()))
ans=0
pre=0
for now in X:
    n=now-1-pre
    ans+=n*(n+1)*(2*n+1)//6
    pre=now
n=M-pre
ans+=n*(n+1)*(2*n+1)//6
print(ans%998244353)
0