Cod sursa(job #2337618)

Utilizator cosmin1972Nour Mihai-Cosmin cosmin1972 Data 6 februarie 2019 16:17:57
Problema Numarare triunghiuri Scor 0
Compilator cpp-64 Status done
Runda Arhiva de probleme Marime 0.31 kb
#include <iostream>
#include <fstream>
#include <unordered_set>
#include <set>
using namespace std;

unordered_set <int> a;

int vf[10];

int main()
{
    long long n,x;
    cin>>n;
    x=n;
    while(x>0)
    {
        vf[x%10]++;
        x/=10;
    }
    for(int i=2;i<=9;i++)
    {

    }
}