結果

問題 No.2941 Sigma Music Game Score Problem
ユーザー t98slidert98slider
提出日時 2024-10-19 19:30:57
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 158 ms / 2,500 ms
コード長 474 bytes
コンパイル時間 4,497 ms
コンパイル使用メモリ 262,280 KB
実行使用メモリ 11,020 KB
最終ジャッジ日時 2024-10-19 19:31:06
合計ジャッジ時間 8,159 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,820 KB
testcase_01 AC 2 ms
6,820 KB
testcase_02 AC 2 ms
6,820 KB
testcase_03 AC 1 ms
6,820 KB
testcase_04 AC 2 ms
6,816 KB
testcase_05 AC 2 ms
6,816 KB
testcase_06 AC 2 ms
6,816 KB
testcase_07 AC 2 ms
6,816 KB
testcase_08 AC 2 ms
6,820 KB
testcase_09 AC 2 ms
6,816 KB
testcase_10 AC 2 ms
6,816 KB
testcase_11 AC 2 ms
6,816 KB
testcase_12 AC 2 ms
6,816 KB
testcase_13 AC 3 ms
6,820 KB
testcase_14 AC 3 ms
6,816 KB
testcase_15 AC 2 ms
6,820 KB
testcase_16 AC 115 ms
8,924 KB
testcase_17 AC 128 ms
9,588 KB
testcase_18 AC 142 ms
10,692 KB
testcase_19 AC 115 ms
9,000 KB
testcase_20 AC 98 ms
8,148 KB
testcase_21 AC 41 ms
6,820 KB
testcase_22 AC 46 ms
6,816 KB
testcase_23 AC 45 ms
6,816 KB
testcase_24 AC 143 ms
10,804 KB
testcase_25 AC 19 ms
6,820 KB
testcase_26 AC 2 ms
6,816 KB
testcase_27 AC 2 ms
6,816 KB
testcase_28 AC 1 ms
6,816 KB
testcase_29 AC 39 ms
6,816 KB
testcase_30 AC 59 ms
8,156 KB
testcase_31 AC 156 ms
11,020 KB
testcase_32 AC 158 ms
11,016 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
#include <atcoder/all>
using namespace std;
using ll = long long;

int main(){
    ios::sync_with_stdio(false);
    cin.tie(0);
    ll m, n;
    cin >> m >> n;
    vector<ll> x(n + 2);
    x[n + 1] = m + 1;
    for(int i = 1; i <= n; i++) cin >> x[i];
    atcoder::modint998244353 ans, v;
    for(int i = 0; i <= n; i++){
        v = x[i + 1] - x[i] - 1;
        ans += v * (v + 1) * (v + v + 1);
    }
    cout << (ans * 166374059).val() << '\n';
}
0