65442023-12-08 11:51:51tamasmarkKéséscpp17Accepted 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
SubtaskSumTestVerdictTimeMemory
base50/50
1Accepted0/03ms2016 KiB
2Accepted0/013ms3300 KiB
3Accepted5/53ms2416 KiB
4Accepted5/53ms2620 KiB
5Accepted5/567ms2724 KiB
6Accepted5/568ms3012 KiB
7Accepted4/4158ms18864 KiB
8Accepted4/4158ms18624 KiB
9Accepted4/4156ms16880 KiB
10Accepted4/4143ms15540 KiB
11Accepted4/4137ms13880 KiB
12Accepted2/2162ms14924 KiB
13Accepted2/2219ms26796 KiB
14Accepted1/1195ms26184 KiB
15Accepted1/1193ms25688 KiB
16Accepted1/1185ms21664 KiB
17Accepted1/1168ms16456 KiB
18Accepted1/1125ms5848 KiB
19Accepted1/1119ms5272 KiB