65442023-12-08 11:51:51tamasmarkKéséscpp17Elfogadva 50/50219ms26796 KiB
// keses.cpp : This file contains the 'main' function. Program execution begins and ends there.
//

#include <iostream>
#include <map>

using namespace std;

unsigned long long n, i, keses,a;
map<long long, long long>x;

int main()
{
    cin >> n;
    for (i = 1; i <= n; ++i)
    {
        cin >> a;
        x[a] = i;
    }
    keses = n;
    for (auto& e : x)
    {
        if (e.second < keses) keses = e.second;
    }
    cout << keses;
    return 0;
}
/*
6
1848 1849 1848 1849 895 1516

*/
// 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
base50/50
1Elfogadva0/03ms2016 KiB
2Elfogadva0/013ms3300 KiB
3Elfogadva5/53ms2416 KiB
4Elfogadva5/53ms2620 KiB
5Elfogadva5/567ms2724 KiB
6Elfogadva5/568ms3012 KiB
7Elfogadva4/4158ms18864 KiB
8Elfogadva4/4158ms18624 KiB
9Elfogadva4/4156ms16880 KiB
10Elfogadva4/4143ms15540 KiB
11Elfogadva4/4137ms13880 KiB
12Elfogadva2/2162ms14924 KiB
13Elfogadva2/2219ms26796 KiB
14Elfogadva1/1195ms26184 KiB
15Elfogadva1/1193ms25688 KiB
16Elfogadva1/1185ms21664 KiB
17Elfogadva1/1168ms16456 KiB
18Elfogadva1/1125ms5848 KiB
19Elfogadva1/1119ms5272 KiB