Accepted
Code
#include <iostream>
#include <string>
using namespace std;
int main()
{
int T;
cin>>T;
string S;
for(int i=0; i<T; i++)
{
cin>>S;
int totalValue =0;
for (int j=0; j<S.length(); j++)
{
if(S[j]>= '0' && S[j]<='9')
{
totalValue += (S[j]-'0');
}
}
cout<< totalValue <<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:17:58
- Judged At
- 2024-11-11 03:22:22
- Judged By
- Score
- 100
- Total Time
- 2ms
- Peak Memory
- 532.0 KiB