結果

問題 No.2941 Sigma Music Game Score Problem
ユーザー applejamapplejam
提出日時 2024-12-16 22:40:20
言語 C++23(gcc13)
(gcc 13.2.0 + boost 1.83.0)
結果
AC  
実行時間 315 ms / 2,500 ms
コード長 909 bytes
コンパイル時間 4,133 ms
コンパイル使用メモリ 105,036 KB
実行使用メモリ 11,136 KB
最終ジャッジ日時 2024-12-16 22:40:32
合計ジャッジ時間 8,874 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
5,248 KB
testcase_01 AC 2 ms
5,248 KB
testcase_02 AC 2 ms
5,248 KB
testcase_03 AC 2 ms
5,248 KB
testcase_04 AC 2 ms
5,248 KB
testcase_05 AC 2 ms
5,248 KB
testcase_06 AC 2 ms
5,248 KB
testcase_07 AC 2 ms
5,248 KB
testcase_08 AC 2 ms
5,248 KB
testcase_09 AC 4 ms
5,248 KB
testcase_10 AC 2 ms
5,248 KB
testcase_11 AC 2 ms
5,248 KB
testcase_12 AC 2 ms
5,248 KB
testcase_13 AC 4 ms
5,248 KB
testcase_14 AC 4 ms
5,248 KB
testcase_15 AC 2 ms
5,248 KB
testcase_16 AC 221 ms
8,960 KB
testcase_17 AC 244 ms
9,644 KB
testcase_18 AC 313 ms
10,780 KB
testcase_19 AC 229 ms
9,136 KB
testcase_20 AC 188 ms
8,040 KB
testcase_21 AC 80 ms
5,248 KB
testcase_22 AC 89 ms
5,376 KB
testcase_23 AC 82 ms
5,248 KB
testcase_24 AC 289 ms
10,880 KB
testcase_25 AC 41 ms
5,248 KB
testcase_26 AC 2 ms
5,248 KB
testcase_27 AC 2 ms
5,248 KB
testcase_28 AC 1 ms
5,248 KB
testcase_29 AC 98 ms
6,400 KB
testcase_30 AC 149 ms
8,128 KB
testcase_31 AC 312 ms
11,132 KB
testcase_32 AC 315 ms
11,136 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <algorithm>
#include <vector>
using namespace std;
using ll = long long;
#include <atcoder/modint>
using namespace atcoder;
#define rep(i, n) for (int i = 0; i< (int)(n); i++) 

using mint = modint998244353;

mint solve(ll a){
    mint res = a; res *= (a+1); res *= (2*a + 1);
    res /= (mint)6;
    return res;  
}

int main(){
    ios::sync_with_stdio(false);
    std::cin.tie(nullptr);
    ll m; int n; cin >> m >> n;
    if(n == 0){
        mint ans = m; ans *= (m+1); ans *= (2*m + 1);
        ans /= (mint)6;
        cout << ans.val() << endl;
        return 0;
    }

    vector<ll> x(n); rep(i, n)cin >> x[i];
    mint score = (mint)0;
    rep(i, n){
        if(i == 0){
            score += solve(x[i] - 1);
            continue;
        }
        score += solve(x[i] - x[i-1] - 1);
    }
    score += solve(m - x[n-1]);
    cout << score.val() << endl;

    return 0;
}
0