/ SeriousOJ /

Record Detail

Accepted


  
# Status Time Cost Memory Cost
#1 Accepted 2ms 404.0 KiB
#2 Accepted 2ms 540.0 KiB
#3 Accepted 2ms 336.0 KiB
#4 Accepted 2ms 540.0 KiB

Code

#include <bits/stdc++.h>
using namespace std;

int main()
{
    int t;
    cin >> t;
    while (t--)
    {
        int count = 0;
        string stone;
        cin >> stone;
        for (int i = 0; i < stone.size(); i++)
        {
            switch (stone[i])
            {
            case '1':
                count += 1;
                break;
            case '2':
                count += 2;
                break;
            case '3':
                count += 3;
                break;
            case '4':
                count += 4;
                break;
            case '5':
                count += 5;
                break;
            case '6':
                count += 6;
                break;
            case '7':
                count += 7;
                break;
            case '8':
                count += 8;
                break;
            case '9':
                count += 9;
                break;

            default:
                break;
            }
        }
        cout << count << 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 16:08:35
Judged At
2024-10-03 13:38:23
Judged By
Score
100
Total Time
2ms
Peak Memory
540.0 KiB