122812024-12-10 22:14:42CsongiFelhasználónevekcpp17Accepted 100/100239ms16088 KiB
#include <bits/stdc++.h>
using namespace std;

int main() {
    ios::sync_with_stdio(0);
    cin.tie(0);

    string valerio; cin >> valerio;
    int n, k = 1; bool t = false; cin >> n;
    vector<string> f(n);
    for (int i = 0; i < n; i++)
    {
        cin >> f[i];
        if (f[i] == valerio)
        {
            t = true;
        }
    }
    if (!t)
    {
        cout << valerio << endl; return 0;
    }
    sort(f.begin(), f.end());
    while (binary_search(f.begin(), f.end(), valerio+to_string(k)))
    {
        k++;
    }
    cout << valerio+to_string(k) << endl;
    return 0;
}
SubtaskSumTestVerdictTimeMemory
subtask10/0
1Accepted1ms500 KiB
2Accepted1ms320 KiB
subtask220/20
3Accepted1ms320 KiB
4Accepted1ms320 KiB
subtask340/40
5Accepted1ms320 KiB
6Accepted1ms320 KiB
7Accepted1ms320 KiB
8Accepted1ms320 KiB
9Accepted1ms320 KiB
10Accepted1ms320 KiB
11Accepted1ms508 KiB
12Accepted1ms320 KiB
13Accepted1ms320 KiB
14Accepted1ms320 KiB
subtask440/40
15Accepted43ms15964 KiB
16Accepted170ms16068 KiB
17Accepted143ms16000 KiB
18Accepted170ms15928 KiB
19Accepted239ms15928 KiB
20Accepted210ms15928 KiB
21Accepted211ms15904 KiB
22Accepted211ms16088 KiB
23Accepted109ms7288 KiB
24Accepted108ms7204 KiB
25Accepted108ms7116 KiB
26Accepted105ms6968 KiB
27Accepted46ms15928 KiB