39772023-03-07 12:32:22bzsofiaAranycipők (45)cpp11Elfogadva 45/453ms3952 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ÖsszpontTesztVerdiktIdőMemória
base45/45
1Elfogadva0/03ms1896 KiB
2Elfogadva0/03ms2084 KiB
3Elfogadva3/33ms2308 KiB
4Elfogadva3/33ms2528 KiB
5Elfogadva3/32ms2604 KiB
6Elfogadva3/33ms2716 KiB
7Elfogadva3/33ms3208 KiB
8Elfogadva3/33ms3328 KiB
9Elfogadva3/32ms3336 KiB
10Elfogadva3/33ms3440 KiB
11Elfogadva3/33ms3460 KiB
12Elfogadva3/33ms3688 KiB
13Elfogadva3/33ms3796 KiB
14Elfogadva3/33ms3728 KiB
15Elfogadva3/33ms3740 KiB
16Elfogadva3/33ms3804 KiB
17Elfogadva3/33ms3952 KiB