77482024-01-11 06:46:52csdavidAranycipők (45)cpp17Hibás válasz 37/454ms3284 KiB
#include <iostream>
#include <algorithm>

using namespace std;

struct jatekos
{
    short gol;
    short sorszam;
};

bool alma(jatekos x123, jatekos y123)
{
    return x123.gol>y123.gol;
}


int main()
{
    short n;
    cin >> n;
    jatekos a[n];
    for(short i=0; i<n; i++){
        cin >> a[i].gol;
        a[i].sorszam = i+1;
    }
    sort(a, a+n, alma);

    short e=1, golok=a[0].gol;
    for(short i=1; (a[i].gol==golok)&&i<n; i++){
        e++;
    }
    cout << golok << endl << e << endl;
    for(short i=0; (a[i].gol==golok)&&i<n; i++){
        cout<<a[i].sorszam << endl;
    }
    /*for(int i=0; i<n; i++){
        cout << a[i].sorszam << ".   " << a[i].gol << endl;
    }*/
















    return 0;
}
RészfeladatÖsszpontTesztVerdiktIdőMemória
base37/45
1Elfogadva0/03ms2024 KiB
2Hibás válasz0/03ms2248 KiB
3Elfogadva3/33ms2384 KiB
4Elfogadva3/33ms2524 KiB
5Elfogadva3/33ms2740 KiB
6Elfogadva3/33ms2868 KiB
7Elfogadva3/32ms2952 KiB
8Elfogadva3/33ms2956 KiB
9Elfogadva3/33ms2952 KiB
10Részben helyes2/34ms2984 KiB
11Részben helyes2/33ms2952 KiB
12Részben helyes2/33ms2960 KiB
13Részben helyes2/33ms3084 KiB
14Részben helyes2/33ms3204 KiB
15Részben helyes2/33ms3200 KiB
16Részben helyes2/33ms3168 KiB
17Részben helyes2/33ms3284 KiB