Cod sursa(job #2330916)

Utilizator jack92657Jacky boy jack92657 Data 28 ianuarie 2019 22:49:55
Problema Algoritmul lui Euclid Scor 0
Compilator cpp-64 Status done
Runda Arhiva educationala Marime 0.67 kb
#include <bits/stdc++.h>
#define ff first
#define ss second

using namespace std;
typedef long long ll;
typedef long double ld;
typedef pair<int, int> pi;

const string file = "data";
const ll INF = 9223372036854775807ll;
const int inf = 2147483647;

int n, test;

int main()
{
    /*ofstream fout (file+".out");
    srand(time(NULL));
    n = 100000;
    test = 100000;
    fout << n << " " << test << "\n";
    for (int i = 1; i <= n; ++i)
        fout << rand()%100000+1 << " ";
    fout << "\n";
    for (int i = 1; i <= test; ++i){
        int x = rand()%n+1, y = rand()%n+1;
        if(x > y)
            swap(x, y);
        fout << x << " " << y << "\n";
    }*/
    return 0;
}