Accepted
Code
#include<bits/stdc++.h>
using namespace std;
#define optimize() ios_base::sync_with_stdio(0);cin.tie(0);cout.tie(0);
#define endl '\n'
#define ll long long int
int main()
{
optimize();
int t;
cin>>t;
while(t--)
{
string s;
cin>>s;
vector<int>v;
int c=0;
for(int i=0;i<s.size();i++)
{
if(s[i]=='1' or s[i]=='2' or s[i]=='3' or s[i]=='4' or s[i]=='5' or s[i]=='6'
or s[i]=='7' or s[i]=='8' or s[i]=='9')v.push_back(s[i]-'0');
}
for(int i=0;i<v.size();i++) c+=v[i];
cout<<c<<endl;
}
return 0;
}
Information
- Submit By
- Type
- Submission
- Problem
- P1072 Valuable digit
- Contest
- Brain Booster #4
- Language
- C++20 (G++ 13.2.0)
- Submit At
- 2024-07-14 18:21:20
- Judged At
- 2024-11-11 03:22:20
- Judged By
- Score
- 100
- Total Time
- 1ms
- Peak Memory
- 764.0 KiB