5765 2023. 09. 21 08:22:57 zsebi Aranycipők (45) cpp11 Elfogadva 45/45 3ms 3908 KiB
// aranycipok.cpp : This file contains the 'main' function. Program execution begins and ends there.
//

#include <iostream>
#include <queue>

#define ll long long 
using namespace std;
ll n;
int main()
{
    cin >> n;
    vector<ll>x(n),ans;
    ll maxi = -1,db=0;
    for (int i = 0; i < n; ++i)
    {
        cin >> x[i];
        if (x[i] > maxi)maxi = x[i];
    }
    for (int i = 0; i < n; ++i)
    {
        if (x[i] == maxi)
        {
             db++;
             ans.push_back(i + 1);
        }
    }
    cout << maxi << "\n" << db<<"\n";
    for (auto& e : ans)cout << e << "\n";

    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 45/45
1 Elfogadva 0/0 3ms 1808 KiB
2 Elfogadva 0/0 3ms 2068 KiB
3 Elfogadva 3/3 2ms 2268 KiB
4 Elfogadva 3/3 2ms 2324 KiB
5 Elfogadva 3/3 2ms 2404 KiB
6 Elfogadva 3/3 3ms 2528 KiB
7 Elfogadva 3/3 3ms 2744 KiB
8 Elfogadva 3/3 3ms 2956 KiB
9 Elfogadva 3/3 3ms 3164 KiB
10 Elfogadva 3/3 3ms 3444 KiB
11 Elfogadva 3/3 3ms 3360 KiB
12 Elfogadva 3/3 3ms 3324 KiB
13 Elfogadva 3/3 3ms 3328 KiB
14 Elfogadva 3/3 3ms 3456 KiB
15 Elfogadva 3/3 3ms 3544 KiB
16 Elfogadva 3/3 3ms 3680 KiB
17 Elfogadva 3/3 3ms 3908 KiB