25242023-01-16 09:32:03tamasmarkSzomjas állatokcpp17Elfogadva 100/1004ms3952 KiB
// kodkupa animal.cpp : This file contains the 'main' function. Program execution begins and ends there.
//

#include <iostream>
#include <deque>

using namespace std;

deque<long long>x;
int n, i,a,db,j;

int main()
{
    cin >> n;
    x.resize(n + 1);
    db = n;
    for (i = 1; i <= n; ++i)
    {
        cin >> x[i];
        for (j = 1; j < i; ++j)
        {
            if (x[j] < x[i]&&x[j])
            {
                x[j] = 0;
                --db;
            }
        } 
    }
    cout << db;
    return 0;
}
/*
5
3 7 2 5 4
*/
// 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
subtask10/0
1Elfogadva3ms1688 KiB
2Elfogadva2ms1864 KiB
subtask25/5
3Elfogadva2ms2108 KiB
4Elfogadva2ms2348 KiB
5Elfogadva2ms2388 KiB
subtask320/20
6Elfogadva2ms2388 KiB
7Elfogadva2ms2660 KiB
8Elfogadva3ms2848 KiB
9Elfogadva4ms3036 KiB
10Elfogadva4ms3012 KiB
subtask425/25
11Elfogadva2ms3136 KiB
12Elfogadva2ms3212 KiB
13Elfogadva2ms3208 KiB
14Elfogadva2ms3336 KiB
15Elfogadva2ms3588 KiB
subtask520/20
16Elfogadva2ms3764 KiB
17Elfogadva2ms3716 KiB
18Elfogadva4ms3724 KiB
19Elfogadva4ms3832 KiB
20Elfogadva4ms3788 KiB
subtask630/30
21Elfogadva2ms3708 KiB
22Elfogadva2ms3840 KiB
23Elfogadva3ms3924 KiB
24Elfogadva4ms3920 KiB
25Elfogadva4ms3952 KiB
26Elfogadva4ms3932 KiB