結果

問題 No.1620 Substring Sum
ユーザー trineutrontrineutron
提出日時 2021-07-22 21:58:02
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 23 ms / 2,000 ms
コード長 597 bytes
コンパイル時間 2,351 ms
コンパイル使用メモリ 201,784 KB
実行使用メモリ 6,720 KB
最終ジャッジ日時 2023-09-24 16:50:02
合計ジャッジ時間 3,556 ms
ジャッジサーバーID
(参考情報)
judge15 / judge12
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
4,376 KB
testcase_01 AC 1 ms
4,376 KB
testcase_02 AC 2 ms
4,376 KB
testcase_03 AC 2 ms
4,376 KB
testcase_04 AC 22 ms
6,600 KB
testcase_05 AC 22 ms
6,588 KB
testcase_06 AC 23 ms
6,720 KB
testcase_07 AC 21 ms
6,376 KB
testcase_08 AC 22 ms
6,664 KB
testcase_09 AC 21 ms
6,380 KB
testcase_10 AC 22 ms
6,328 KB
testcase_11 AC 21 ms
6,404 KB
testcase_12 AC 8 ms
4,380 KB
testcase_13 AC 20 ms
6,064 KB
testcase_14 AC 21 ms
6,600 KB
testcase_15 AC 18 ms
5,928 KB
testcase_16 AC 13 ms
5,216 KB
testcase_17 AC 17 ms
5,852 KB
testcase_18 AC 2 ms
4,376 KB
testcase_19 AC 1 ms
4,380 KB
testcase_20 AC 21 ms
6,640 KB
testcase_21 AC 21 ms
6,668 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;

int64_t mod = 998244353;

int main()
{
    string s;
    cin >> s;
    int n = s.size();
    vector<int64_t> v0(n), v1(n);
    v0.at(0) = 1;
    for (int i = 0; i < n - 1; i++)
    {
        v0.at(i + 1) = v0.at(i) * 2 % mod;
    }
    v1.at(n - 1) = 1;
    for (int i = 0; i < n - 1; i++)
    {
        v1.at(n - i - 2) = v1.at(n - i - 1) * 11 % mod;
    }
    int64_t ans = 0;
    for (int i = 0; i < n; i++)
    {
        ans += (s.at(i) - '0') * v0.at(i) % mod * v1.at(i) % mod;
        ans %= mod;
    }
    cout << ans << endl;
    return 0;
}
0