fork download
  1. #include<bits/stdc++.h>
  2. using namespace std;
  3. #define el "\n"
  4. #define ll long long
  5. #define ull unsigned long long
  6. #define se second
  7. #define fi first
  8. #define be begin()
  9. #define en end()
  10. #define Faster cin.tie(0); cout.tie(0); ios_base::sync_with_stdio(0);
  11.  
  12. int main()
  13. {
  14. Faster;
  15. string s; cin >> s;
  16. for(auto &x : s)
  17. {
  18. if(x != '*') x = ' ';
  19. }
  20. stringstream ss(s);
  21. int ans = 0;
  22. string x;
  23. while(ss >> x)
  24. {
  25. ans += x.size()* (x.size() + 1) / 2;
  26. }
  27. cout << ans;
  28. return 0;
  29. }
  30.  
Success #stdin #stdout 0s 5272KB
stdin
+****++***+*
stdout
17