Cod sursa(job #1955514)

Utilizator Andrei2000Andrei Mihailescu Andrei2000 Data 6 aprilie 2017 00:56:20
Problema Loto Scor 0
Compilator cpp Status done
Runda Arhiva de probleme Marime 0.34 kb
#include <bits/stdc++.h>
#define Nmax 100
using namespace std;
ifstream fin ("loto.in");
ofstream fout ("loto.out");
int n,S,v[Nmax];
struct tri{
    int x,y,z;
    bool q;
}trio;
unordered_map <int, tri> hash1;

int main()
{
    fin>>n>>S;
    for(int i=1;i<=n;++i)
        fin>>v[i];

    fout<<-1<<endl;
    return 0;
}