1669B - Triple - CodeForces Solution


implementation sortings *800

Please click on ads to support us..

Python Code:

for i in range(int(input())):
    a = input()
    lst = list(map(int, input().split()))
    sl = {}
    for el in lst:
        sl[el] = 1 + (sl[el] if el in sl else 0)
        if sl[el] > 2:
            print(el)
            break
    else:
        print(-1)

C++ Code:

#include<bits/stdc++.h>
using namespace std;
int main()
{
    int c;
    cin>>c;
    for(int t=0; t<c; t++)
    {
        int n,out=0;
        cin>>n;
        int a[n+5],b[n+5]= {0};
        for(int i=0; i<n; i++)
        {
            cin>>a[i];
            b[a[i]]+=1;
        }
        for(int j=0; j<=n; j++)
        {
            if(b[j]>=3)
            {
                out=j;
            }
        }
        if(out==0)
            cout<<"-1"<<endl;
        else
            cout<<out<<endl;
    }
    return 0;
}


Comments

Submit
0 Comments
More Questions

22E - Scheme
1566A - Median Maximization
1278A - Shuffle Hashing
1666F - Fancy Stack
1354A - Alarm Clock
1543B - Customising the Track
1337A - Ichihime and Triangle
1366A - Shovels and Swords
919A - Supermarket
630C - Lucky Numbers
1208B - Uniqueness
1384A - Common Prefixes
371A - K-Periodic Array
1542A - Odd Set
1567B - MEXor Mixup
669A - Little Artem and Presents
691B - s-palindrome
851A - Arpa and a research in Mexican wave
811A - Vladik and Courtesy
1006B - Polycarp's Practice
1422A - Fence
21D - Traveling Graph
1559B - Mocha and Red and Blue
1579C - Ticks
268B - Buttons
898A - Rounding
1372B - Omkar and Last Class of Math
1025D - Recovering BST
439A - Devu the Singer and Churu the Joker
1323A - Even Subset Sum Problem