114332024-09-17 07:22:21madvirAranycipők (45)cpp17Elfogadva 45/454ms632 KiB
#include <iostream>
#include <set>

using namespace std;

int main()
{
    int n, maxi=1, x=0;
    cin >> n;
    set<int> index;
    int a[n], s[n];
    for(int i=0; i<n; i++) {
        cin >> a[i];
        if(a[i]>maxi) maxi=a[i];
    }
    cout<< maxi << endl;
    for(int i=0; i<n; i++) {
        if(a[i]==maxi) {
            s[x]=i+1;
            x++;
        }
    }
    cout << x << endl;
    for(int i=0; i<x; i++) {
        cout << s[i] << endl;
    }
    return 0;
}
RészfeladatÖsszpontTesztVerdiktIdőMemória
base45/45
1Elfogadva0/03ms360 KiB
2Elfogadva0/03ms408 KiB
3Elfogadva3/33ms512 KiB
4Elfogadva3/33ms360 KiB
5Elfogadva3/32ms504 KiB
6Elfogadva3/33ms384 KiB
7Elfogadva3/32ms360 KiB
8Elfogadva3/32ms360 KiB
9Elfogadva3/32ms360 KiB
10Elfogadva3/34ms504 KiB
11Elfogadva3/33ms632 KiB
12Elfogadva3/32ms256 KiB
13Elfogadva3/33ms384 KiB
14Elfogadva3/34ms360 KiB
15Elfogadva3/34ms504 KiB
16Elfogadva3/33ms488 KiB
17Elfogadva3/34ms376 KiB