結果

問題 No.1540 級数おもちゃ
ユーザー 遭難者遭難者
提出日時 2021-04-29 00:25:07
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 1,679 bytes
コンパイル時間 2,492 ms
コンパイル使用メモリ 207,076 KB
実行使用メモリ 10,368 KB
最終ジャッジ日時 2024-05-01 21:34:38
合計ジャッジ時間 5,121 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 WA -
testcase_02 WA -
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
testcase_24 WA -
testcase_25 WA -
testcase_26 WA -
testcase_27 WA -
testcase_28 WA -
testcase_29 WA -
testcase_30 WA -
testcase_31 WA -
testcase_32 WA -
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.cpp: In function 'int main()':
main.cpp:65:11: warning: 'b' may be used uninitialized [-Wmaybe-uninitialized]
   65 |         b += mod;
      |         ~~^~~~~~
main.cpp:52:18: note: 'b' was declared here
   52 |     long long a, b, c = 0;
      |                  ^
main.cpp:63:11: warning: 'a' may be used uninitialized [-Wmaybe-uninitialized]
   63 |         a += mod;
      |         ~~^~~~~~
main.cpp:52:15: note: 'a' was declared here
   52 |     long long a, b, c = 0;
      |               ^

ソースコード

diff #

//   g++ a.cpp
//   ./a.out
#include <bits/stdc++.h>
#include <iostream>
#include <string>
#include <cstdlib>
#include <cmath>
using namespace std;

const long long mod = 998244353;

long modpow(long long a, long long b)
{
    if (b == 0)
        return 1;
    if ((b & 1) == 0)
        return modpow((a * a) % mod, b >> 1);
    return (a * modpow(a, b - 1)) % mod;
}

int main()
{
    int N;
    cin >> N;
    vector<long long> A(N);
    vector<long long> T(N);
    T[0] = 1;
    for (int i = 0; i < N; i++)
        cin >> A[i];
    for (int i = 0; i < N; i++)
    {
        A[i] *= 2;
        A[i] %= mod;
    }
    for (int i = 1; i < N; i++)
        T[i] = (T[i - 1] * 2) % mod;
    vector<vector<long long>> I(N + 1, vector<long long>(3));
    I[0][2] = modpow(6, mod - 2);
    I[0][0] = 0;
    I[0][1] = 0;
    I[1][0] = 1;
    I[1][1] = modpow(-2, mod - 2) + mod;
    I[1][2] = 0;
    for (int i = 2; i < N; i++)
    {
        I[i][0] = ((i - 1) * I[i - 2][0] % mod) * modpow(i, mod - 2) % mod;
        I[i][1] = (((i - 1) * I[i - 2][1] % mod) * modpow(i, mod - 2) % mod - modpow(T[i], mod - 2)) % mod;
        if (I[i][1] < 0)
            I[i][1] += mod;
        I[i][2] = ((i - 1) * I[i - 2][2] % mod) * modpow(i, mod - 2) % mod;
    }
    long long a, b, c = 0;
    for (int i = 0; i < N; i++)
    {
        a += (((A[i] * T[i]) % mod) * I[i][0]) % mod;
        a %= mod;
        b += (((A[i] * T[i]) % mod) * I[i][1]) % mod;
        b %= mod;
        c += (((A[i] * T[i]) % mod) * I[i][2]) % mod;
        c %= mod;
    }
    if (a < 0)
        a += mod;
    if (b < 0)
        b += mod;
    if (c < 0)
        c += mod;
    cout << a << " " << b << " " << c << endl;
}
0