/ SeriousOJ /

Record Detail

Accepted


  
# Status Time Cost Memory Cost
#1 Accepted 2ms 332.0 KiB
#2 Accepted 2ms 332.0 KiB
#3 Accepted 2ms 508.0 KiB
#4 Accepted 2ms 332.0 KiB

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-10-03 13:35:18
Judged By
Score
100
Total Time
2ms
Peak Memory
508.0 KiB