結果

問題 No.2941 Sigma Music Game Score Problem
ユーザー tipstar0125tipstar0125
提出日時 2024-10-18 22:26:21
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 420 ms / 2,500 ms
コード長 365 bytes
コンパイル時間 402 ms
コンパイル使用メモリ 82,832 KB
実行使用メモリ 200,808 KB
最終ジャッジ日時 2024-10-18 22:50:57
合計ジャッジ時間 6,880 ms
ジャッジサーバーID
(参考情報)
judge8 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
52,164 KB
testcase_01 AC 35 ms
53,232 KB
testcase_02 AC 35 ms
52,564 KB
testcase_03 AC 40 ms
52,624 KB
testcase_04 AC 35 ms
52,972 KB
testcase_05 AC 35 ms
52,152 KB
testcase_06 AC 34 ms
53,036 KB
testcase_07 AC 51 ms
52,884 KB
testcase_08 AC 34 ms
53,000 KB
testcase_09 AC 40 ms
60,420 KB
testcase_10 AC 41 ms
59,656 KB
testcase_11 AC 40 ms
60,116 KB
testcase_12 AC 39 ms
59,896 KB
testcase_13 AC 40 ms
61,544 KB
testcase_14 AC 40 ms
60,652 KB
testcase_15 AC 39 ms
59,672 KB
testcase_16 AC 317 ms
177,464 KB
testcase_17 AC 353 ms
173,188 KB
testcase_18 AC 389 ms
200,636 KB
testcase_19 AC 339 ms
171,752 KB
testcase_20 AC 281 ms
163,052 KB
testcase_21 AC 153 ms
103,108 KB
testcase_22 AC 159 ms
107,540 KB
testcase_23 AC 156 ms
103,492 KB
testcase_24 AC 401 ms
200,808 KB
testcase_25 AC 93 ms
91,120 KB
testcase_26 AC 35 ms
52,092 KB
testcase_27 AC 34 ms
52,276 KB
testcase_28 AC 33 ms
53,284 KB
testcase_29 AC 100 ms
103,580 KB
testcase_30 AC 129 ms
125,320 KB
testcase_31 AC 420 ms
198,076 KB
testcase_32 AC 419 ms
198,120 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

mod=998244353
ans=0
before=0
for xi in x:
    if xi-before-1==0:
        before=xi
        continue
    n=xi-before-1
    # print(before, xi, n)
    ans+=n*(n+1)*(2*n+1)//6
    ans%=mod
    before=xi
if m-before!=0:
    n=m-before
    # print(before, m, n)
    ans+=n*(n+1)*(2*n+1)//6
    ans%=mod
print(ans)
0