Submission #9677131


Source Code Expand

#include <bits/stdc++.h>
#define _overload3(_1, _2, _3, name, ...) name
#define _rep(i, n) repi(i, 0, n)
#define repi(i, a, b) for (ll i = (ll)(a); i < (ll)(b); ++i)
#define rep(...) _overload3(__VA_ARGS__, repi, _rep, )(__VA_ARGS__)
#define ll long long
#define lld long double
#define ALL(x) x.begin(), x.end()
#ifdef DEBUG
#define line() cerr << "[" << __LINE__ << "] ";
#define dump(i) cerr << #i ": " << i << " ";
#define dumpl(i) cerr << #i ": " << i << endl;
#else
#define line(i)
#define dump(i)
#define dumpl(i)
#endif
using namespace std;

int main(int argc, char const *argv[])
{
    int a, b, n;
    cin >> a >> b >> n;
    string s;
    cin >> s;
    rep(i, n)
    {
        if (s[i] == 'S')
        {
            a = max(0, a - 1);
        }
        else if (s[i] == 'C')
        {
            b = max(0, b - 1);
        }
        else
        {
            if (b > a)
            {
                b = max(0, b - 1);
            }
            else
            {
                a = max(0, a - 1);
            }
        }
    }
    cout << a << endl
         << b << endl;
    return 0;
}

Submission Info

Submission Time
Task B - 洋菓子店
User sbite
Language C++14 (GCC 5.4.1)
Score 200
Code Size 1154 Byte
Status AC
Exec Time 4 ms
Memory 512 KB

Judge Result

Set Name Sample All
Score / Max Score 0 / 0 200 / 200
Status
AC × 4
AC × 12
Set Name Test Cases
Sample sample-01.txt, sample-02.txt, sample-03.txt, sample-04.txt
All 01.txt, 02.txt, 03.txt, 04.txt, 05.txt, 06.txt, 07.txt, 08.txt, sample-01.txt, sample-02.txt, sample-03.txt, sample-04.txt
Case Name Status Exec Time Memory
01.txt AC 4 ms 384 KB
02.txt AC 3 ms 384 KB
03.txt AC 3 ms 384 KB
04.txt AC 3 ms 384 KB
05.txt AC 2 ms 256 KB
06.txt AC 4 ms 512 KB
07.txt AC 1 ms 256 KB
08.txt AC 1 ms 256 KB
sample-01.txt AC 1 ms 256 KB
sample-02.txt AC 1 ms 256 KB
sample-03.txt AC 1 ms 256 KB
sample-04.txt AC 1 ms 256 KB