2025 2022. 12. 15 10:33:52 szabel26 Bimmbamm (30) cpp17 Elfogadva 30/30 3ms 3828 KiB
// ConsoleApplication1.cpp : This file contains the 'main' function. Program execution begins and ends there.
//

#include <iostream>
//#include <fstream>
#include <string>
#include <vector>
//#include <cstdlib>
using namespace std;

string s;

int i, n;
bool db;
//vector<string>x;

int main()
{
    cin >> n;
    for (i = 1; i <= n; ++i)
    {
        cin >> s;
        if (i % 3 == 0 && i % 5 == 0)
        {
            if (s[1] != 'U')
            {
                cout << i;
                db = true;
                break;
            }
        }
        else if (i % 3 == 0)
        {
            if (s[1] != 'I')
            {
                cout << i;
                db = true;
                break;
            }
        }
        else if (i % 5 == 0)
        {
            if (s[1] != 'A')
            {
                cout << i;
                db = true;
                break;
            }
        }
        else if (s[0] != 'S')
        {
            cout << i;
            db = true;
            break;
        }
    }
    //system("pause");
    if (db == false) cout << 0;
    return 0;
}


// 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 Összpont Teszt Verdikt Idő Memória
base 30/30
1 Elfogadva 0/0 3ms 1876 KiB
2 Elfogadva 0/0 2ms 2392 KiB
3 Elfogadva 3/3 2ms 2356 KiB
4 Elfogadva 3/3 2ms 2600 KiB
5 Elfogadva 3/3 2ms 2740 KiB
6 Elfogadva 3/3 2ms 2992 KiB
7 Elfogadva 3/3 2ms 3136 KiB
8 Elfogadva 3/3 2ms 3340 KiB
9 Elfogadva 3/3 2ms 3544 KiB
10 Elfogadva 3/3 2ms 3748 KiB
11 Elfogadva 3/3 2ms 3828 KiB
12 Elfogadva 3/3 2ms 3824 KiB