結果

問題 No.2941 Sigma Music Game Score Problem
ユーザー amesyuamesyu
提出日時 2024-10-24 11:30:51
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 512 ms / 2,500 ms
コード長 241 bytes
コンパイル時間 919 ms
コンパイル使用メモリ 82,428 KB
実行使用メモリ 260,992 KB
最終ジャッジ日時 2024-10-24 11:31:02
合計ジャッジ時間 10,459 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
52,204 KB
testcase_01 AC 34 ms
52,652 KB
testcase_02 AC 36 ms
52,572 KB
testcase_03 AC 35 ms
52,484 KB
testcase_04 AC 35 ms
52,080 KB
testcase_05 AC 35 ms
52,372 KB
testcase_06 AC 35 ms
53,112 KB
testcase_07 AC 35 ms
52,736 KB
testcase_08 AC 35 ms
53,944 KB
testcase_09 AC 40 ms
61,372 KB
testcase_10 AC 39 ms
60,348 KB
testcase_11 AC 40 ms
60,340 KB
testcase_12 AC 41 ms
60,984 KB
testcase_13 AC 41 ms
61,472 KB
testcase_14 AC 41 ms
61,672 KB
testcase_15 AC 41 ms
61,528 KB
testcase_16 AC 469 ms
210,652 KB
testcase_17 AC 469 ms
243,824 KB
testcase_18 AC 478 ms
249,616 KB
testcase_19 AC 385 ms
217,156 KB
testcase_20 AC 348 ms
218,688 KB
testcase_21 AC 171 ms
124,612 KB
testcase_22 AC 185 ms
131,916 KB
testcase_23 AC 180 ms
125,416 KB
testcase_24 AC 512 ms
251,276 KB
testcase_25 AC 98 ms
96,164 KB
testcase_26 AC 35 ms
52,204 KB
testcase_27 AC 36 ms
52,888 KB
testcase_28 AC 35 ms
52,432 KB
testcase_29 AC 130 ms
134,636 KB
testcase_30 AC 166 ms
180,676 KB
testcase_31 AC 481 ms
260,980 KB
testcase_32 AC 474 ms
260,992 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

x = list(map(int, input().split())) + [m+1]

def add(l, r):
    x = r - l
    return x*(x+1)*(2*x+1)//6

miss = 0
ans = 0

for v in x:
    ans += add(miss+1, v)
    ans %= 998244353
    miss = v

print(ans)
0