6560 2023. 12. 11 10:20:35 gkata Aranycipők (45) cpp17 Elfogadva 45/45 3ms 3760 KiB
// aranycipok.cpp : This file contains the 'main' function. Program execution begins and ends there.
//

#include <iostream>
#include <vector>

using namespace std;

vector<int>x;
int n, a, i, db, m;

int main()
{
    cin >> n;
    for (i = 1; i <= n; ++i)
    {
        cin >> a;
        x.push_back(a);

        if (a > m)
        {
            m = a;
            db = 1;
        }
        else if (a == m)
        {
            ++db;
        }
    }

    cout << m << "\n" << db << "\n";

    for (i = 0; i < n; ++i)
        if (x[i] == m) cout << i+1 << "\n";
}

// 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 45/45
1 Elfogadva 0/0 3ms 1876 KiB
2 Elfogadva 0/0 3ms 2132 KiB
3 Elfogadva 3/3 3ms 2276 KiB
4 Elfogadva 3/3 3ms 2640 KiB
5 Elfogadva 3/3 3ms 2612 KiB
6 Elfogadva 3/3 3ms 2680 KiB
7 Elfogadva 3/3 3ms 2744 KiB
8 Elfogadva 3/3 3ms 2880 KiB
9 Elfogadva 3/3 3ms 2960 KiB
10 Elfogadva 3/3 3ms 3096 KiB
11 Elfogadva 3/3 3ms 3308 KiB
12 Elfogadva 3/3 3ms 3380 KiB
13 Elfogadva 3/3 3ms 3536 KiB
14 Elfogadva 3/3 3ms 3584 KiB
15 Elfogadva 3/3 3ms 3604 KiB
16 Elfogadva 3/3 3ms 3760 KiB
17 Elfogadva 3/3 3ms 3740 KiB