Cod sursa(job #2405219)

Utilizator gabi08Dron Ionut-Gabriel gabi08 Data 14 aprilie 2019 09:50:55
Problema Fractii Scor 30
Compilator cpp-64 Status done
Runda Arhiva de probleme Marime 0.44 kb
#include <iostream>
#include <fstream>
#define nmax 1000005
using namespace std;

ifstream in("fractii.in");
ofstream out("fractii.out");

int n, sol;
int v[nmax];

int main() 
{
	in >> n;
	for (int i = 2; i <= n; ++i)
		v[i] = i - 1;
	for (int i = 2; i <= n / 2; ++i)
	{
		for (int j = 2 * i; j <= n; j += i)
		{
			v[j] -= v[i];
		}
	}
	for (int i = 2; i <= n; ++i)
		sol += v[i];
	out << 2 * sol + 1;
	system("pause");
}