3977 2023. 03. 07 12:32:22 bzsofia Aranycipők (45) cpp11 Elfogadva 45/45 3ms 3952 KiB
// Aranycipok.cpp : This file contains the 'main' function. Program execution begins and ends there.
//

#include <iostream>
#include <vector>

using namespace std;

long long i, n, a, maxi;
vector <long long> v;

int main()
{
    ios_base::sync_with_stdio(false);
    cin.tie(NULL);

    cin >> n;

    for (i = 1; i <= n; ++i)
    {
        cin >> a;
        if (a > maxi)
        {
            v.clear();
            v.push_back(i);
            maxi = a;
        }
        else if (a == maxi)
        {
            v.push_back(i);
        }
    }

    cout << maxi<<"\n"<<v.size()<<"\n";

    for (auto& e : v) cout << e << "\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 1896 KiB
2 Elfogadva 0/0 3ms 2084 KiB
3 Elfogadva 3/3 3ms 2308 KiB
4 Elfogadva 3/3 3ms 2528 KiB
5 Elfogadva 3/3 2ms 2604 KiB
6 Elfogadva 3/3 3ms 2716 KiB
7 Elfogadva 3/3 3ms 3208 KiB
8 Elfogadva 3/3 3ms 3328 KiB
9 Elfogadva 3/3 2ms 3336 KiB
10 Elfogadva 3/3 3ms 3440 KiB
11 Elfogadva 3/3 3ms 3460 KiB
12 Elfogadva 3/3 3ms 3688 KiB
13 Elfogadva 3/3 3ms 3796 KiB
14 Elfogadva 3/3 3ms 3728 KiB
15 Elfogadva 3/3 3ms 3740 KiB
16 Elfogadva 3/3 3ms 3804 KiB
17 Elfogadva 3/3 3ms 3952 KiB