/ SeriousOJ /

Record Detail

Accepted


  
# Status Time Cost Memory Cost
#1 Accepted 1ms 768.0 KiB
#2 Accepted 1ms 540.0 KiB
#3 Accepted 1ms 332.0 KiB
#4 Accepted 1ms 352.0 KiB

Code

#include <bits/stdc++.h>
using namespace std;
#define int long long
#define yes cout << "Yes" << endl
#define no cout << "No" << endl
#define neg cout << -1 << endl
#define pb push_back
#define ss second
#define ff first

const int mod = 1e9 + 7;
const int N = 2e5 + 5;
const int INF = 1e18;
int md = 998244353;

void solve()
{
    string s;
    cin>>s;
    int ans=0;
    for(auto it:s)
    {
        if(it>='0' and it<='9')
        {
            ans+=it-'0';
        }
    }
    cout<<ans<<endl;
}

signed main()
{
    ios_base::sync_with_stdio(false);
    cin.tie(0);
    cout.tie(0);

    int test=1;
    cin >> test;
    for (int tc = 0; tc < test; tc++)
    {
        solve();
    }

    return 0;
}

Information

Submit By
Type
Submission
Problem
P1072 Valuable digit
Language
C++17 (G++ 13.2.0)
Submit At
2024-07-14 19:45:48
Judged At
2024-07-14 19:45:48
Judged By
Score
100
Total Time
1ms
Peak Memory
768.0 KiB