Мне кажется, что не правильно. Немного не тот порядок. Вы все правильно написали, что один символ будет равен 5 бит. Далее узнаем сколько весит длина одного маркера: 5*9= 45 бит. Сейчас нужно перевести у узнать сколько нужно байт для одного изделия: 45/8=6 байт(округляем в большую сторону). А теперь уже узнаем общий объем памяти: 6*120=720 байт.
Ответ: 720 байт
Вариант для Excel
исключим отображение бесконечного значения.
Program Program1;
var
x,y:real;
begin
write('Введите x: ');
readln(x);
y:=7*SQR(x)-3*x+6;
writeln('y=',y);
end.
<span>#include <iostream>
#include <sstream>
#include <fstream>
#include <string>
#include <vector>
#include <deque>
#include <queue>
#include <stack>
#include <set>
#include <map>
#include <algorithm>
#include <functional>
#include <cstring>
#include <utility>
#include <bitset>
#include <cmath>
#include <cstdlib>
#include <ctime>
#include <cstdio>
#include <climits></span><span>typedef unsigned long long ulol;
typedef long long lol;
typedef long int li;</span><span>#define mp make_pair
#define F first
#define S second
#define sqr(a) ( (a) * (a) )
#define pb push_back
#define INF 999999999
#define ret(a) cout << endl; system("pause"); return(a)
//#define ret(a) return(a)</span>using namespace std;<span>int main()
{
lol n;
cin >> n;
vector<lol> ar(n);
for(int i = 0 ; i < n ; i ++)
cin >> ar[i];
for(int i = 0 ; i < n ; i += 3)
cout << i+1 << '-' << i+3 << ": " << ar[i]+ar[i+1]+ar[i+2] << endl;
ret(0);
}</span>