65602023-12-11 10:20:35gkataAranycipők (45)cpp17Accepted 45/453ms3760 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
SubtaskSumTestVerdictTimeMemory
base45/45
1Accepted0/03ms1876 KiB
2Accepted0/03ms2132 KiB
3Accepted3/33ms2276 KiB
4Accepted3/33ms2640 KiB
5Accepted3/33ms2612 KiB
6Accepted3/33ms2680 KiB
7Accepted3/33ms2744 KiB
8Accepted3/33ms2880 KiB
9Accepted3/33ms2960 KiB
10Accepted3/33ms3096 KiB
11Accepted3/33ms3308 KiB
12Accepted3/33ms3380 KiB
13Accepted3/33ms3536 KiB
14Accepted3/33ms3584 KiB
15Accepted3/33ms3604 KiB
16Accepted3/33ms3760 KiB
17Accepted3/33ms3740 KiB