30882023-02-15 12:32:15tamasmarkBimmbamm (30)cpp17Elfogadva 30/303ms3620 KiB
// bimm,bamm,bumm.cpp : This file contains the 'main' function. Program execution begins and ends there.
//

#include <iostream>
#include <cstring>
#include <vector>

using namespace std;

int n, i, j;
char x[10], s1 = 'BIMM', s2 = 'BAMM', s3 = 'BUMM', s4 = 'SZAM';

int main()
{
    cin >> n;
    cin.getline(x, 10);
    for (i = 1; i <= n; ++i)
    {
        cin.getline(x, 10);
        if (i % 3 == 0 && i % 5 != 0)
        {
            if (strcmp(x, "BIMM"))
            {
                cout << i;
                break;
            }
        }
        else if (i % 3 != 0 && i % 5 == 0)
        {
            if (strcmp(x, "BAMM"))
            {
                cout << i;
                break;
            }
        }
        else if (i % 3 == 0 && i % 5 == 0)
        {
            if (strcmp(x, "BUMM"))
            {
                cout << i;
                break;
            }
        }
        else
        {
            if (strcmp(x, "SZAM"))
            {
                cout << i;
                break;
            }
        }
    }
    return 0;
}
/*
4
SZAM
SZAM
BIMM
BIMM

5
SZAM
SZAM
BAMM
SZAM
SZAM
*/
// Run program: Ctrl + F5 or Debug > Start Without Debugging menu
// Debug program: F5 or Debug > Start Debugging menu

// Tips for Getting Started: 
//   1. Use the Solution Explorer window to add/manage files
//   2. Use the Team Explorer window to connect to source control
//   3. Use the Output window to see build output and other messages
//   4. Use the Error List window to view errors
//   5. Go to Project > Add New Item to create new code files, or Project > Add Existing Item to add existing code files to the project
//   6. In the future, to open this project again, go to File > Open > Project and select the .sln file
RészfeladatÖsszpontTesztVerdiktIdőMemória
base30/30
1Elfogadva0/03ms1876 KiB
2Elfogadva0/03ms1988 KiB
3Elfogadva3/33ms2204 KiB
4Elfogadva3/33ms2436 KiB
5Elfogadva3/33ms2652 KiB
6Elfogadva3/33ms2832 KiB
7Elfogadva3/33ms3040 KiB
8Elfogadva3/33ms3244 KiB
9Elfogadva3/33ms3388 KiB
10Elfogadva3/33ms3492 KiB
11Elfogadva3/33ms3480 KiB
12Elfogadva3/33ms3620 KiB