結果

問題 No.2941 Sigma Music Game Score Problem
ユーザー titiatitia
提出日時 2024-10-18 22:15:48
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 1,359 ms / 2,500 ms
コード長 231 bytes
コンパイル時間 486 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 125,732 KB
最終ジャッジ日時 2024-10-18 22:48:57
合計ジャッジ時間 13,874 ms
ジャッジサーバーID
(参考情報)
judge5 / judge
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 28 ms
10,624 KB
testcase_01 AC 28 ms
10,624 KB
testcase_02 AC 28 ms
10,624 KB
testcase_03 AC 28 ms
10,624 KB
testcase_04 AC 27 ms
10,624 KB
testcase_05 AC 28 ms
10,752 KB
testcase_06 AC 28 ms
10,624 KB
testcase_07 AC 28 ms
10,624 KB
testcase_08 AC 28 ms
10,624 KB
testcase_09 AC 34 ms
11,264 KB
testcase_10 AC 32 ms
10,752 KB
testcase_11 AC 32 ms
10,880 KB
testcase_12 AC 30 ms
10,880 KB
testcase_13 AC 36 ms
11,392 KB
testcase_14 AC 39 ms
11,776 KB
testcase_15 AC 30 ms
10,880 KB
testcase_16 AC 939 ms
95,772 KB
testcase_17 AC 1,088 ms
109,452 KB
testcase_18 AC 1,198 ms
116,224 KB
testcase_19 AC 950 ms
97,832 KB
testcase_20 AC 794 ms
81,356 KB
testcase_21 AC 371 ms
39,004 KB
testcase_22 AC 390 ms
43,404 KB
testcase_23 AC 372 ms
39,520 KB
testcase_24 AC 1,178 ms
122,424 KB
testcase_25 AC 164 ms
22,144 KB
testcase_26 AC 28 ms
10,624 KB
testcase_27 AC 27 ms
10,624 KB
testcase_28 AC 27 ms
10,496 KB
testcase_29 AC 364 ms
49,096 KB
testcase_30 AC 536 ms
74,164 KB
testcase_31 AC 1,359 ms
125,604 KB
testcase_32 AC 1,343 ms
125,732 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline

mod=998244353

M,N=map(int,input().split())
X=[0]+list(map(int,input().split()))+[M+1]

ANS=0

for i in range(1,len(X)):
    k=X[i]-X[i-1]

    ANS+=k*(k-1)*(2*k-1)//6
    ANS%=mod

print(ANS)
0