Advertisement
milon34

sum of all possible sub-strings of this string.

Jan 26th, 2023
47
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.50 KB | None | 0 0
  1. #include <bits/stdc++.h>
  2.  
  3. using namespace std;
  4. #define ll long long int
  5.  
  6. int main() {
  7.     ios_base::sync_with_stdio(false);
  8.     cin.tie(0);
  9.     cout.tie(0);
  10.     string s;
  11.     cin >> s;
  12.     ll n = s.size();
  13.     ll dp[n] = {0};
  14.     ll mod = 1e9+7;
  15.     ll res = s[0] - '0';
  16.     dp[0] = s[0] - '0';
  17.     for (int i = 1; i < n; i++) {
  18.         dp[i] = (((i + 1) * (s[i] - '0')) + (10 * dp[i - 1])) % mod;
  19.         res += dp[i]%mod;
  20.         res %= mod;
  21.     }
  22.     cout << res;
  23.  
  24.     return 0;
  25. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement