Accepted
Code
#include<bits/stdc++.h>
using namespace std;
#define ll long long
int main()
{
ll tc;
cin>>tc;
while(tc--){
string s;
cin>>s;
ll ans=0;
for(ll i=0;i<s.size();i++){
if(s[i]>='0' && s[i]<='9'){
ans+=s[i]-'0';
}
}
cout<<ans<<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 15:35:03
- Judged At
- 2024-11-11 03:25:53
- Judged By
- Score
- 100
- Total Time
- 1ms
- Peak Memory
- 532.0 KiB