56*60=3360 сек время скачивания
14*1024*336048168960кб
#include <iostream>
#include <cmath>
using namespace std;
int main()
{
int n;
cin>>n;
float s=0;
for (int i=0;i<n;i+=2)
s=s+1.0/pow(2,i)-1.0/pow(2,i+1);
cout<<s;
return 0;
}
Б раовоаооасловвооввоовоовоововрв
var a:array of integer;
N,i,k1,k2,k3:integer;
BEGIN
readln(N);
SetLength(a,N);
for i:=0 to N-1 do begin
read(a[i]);
if (a[i]=0) then k3:=k3+1;
if (a[i]>0) then k1:=k1+1;
if (a[i]<0) then k2:=k2+1;
end;
writeln(k1);
writeln(k2);
writeln(k3);
for i:=0 to N-1 do
write(a[i],' ');
end.