Răspuns :
Răspuns:
#include <iostream>
#include <fstream>
using namespace std;
int main()
{
ifstream f("zmeu.in");
ofstream g("zmeu.out");
long long N,M;
f >> N;
f >> M;
M=M*2;
g<<N/M<<"\n"<<M-(N%M);
return 0;
}
Explicație:
Răspuns:
#include <iostream>
#include <fstream>
using namespace std;
ifstream f("zmeu.in");
ofstream g("zmeu.out");
int main()
{
long long unsigned int n,m,z;
f>>n>>m;
if(n/(m*2)>0)
{
z=n/(m*2);
g<<z<<endl;
g<<2*m-n%(z*2*m);
}
else
{
g<<0<<endl;
g<<2*m-n;
}
f.close();
g.close();
return 0;
}
Explicație:
mai merge si asa
tot 100 de puncte iti da pe pbinfo