Здравейте,
Решавам една от задачите за подготовка Еven or odd product.
Задачата има следното условие:
You are given N integers (given in a single line, separated by a space).
- Write a program that checks whether the product of the odd elements is equal to the product of the even elements.
- Elements are counted from 1 to N , so the first element is odd, the second is even, etc.
Input
- On the first line you will receive the number N
- On the second line you will receive N numbers separated by a whitespace
Output
- If the two products are equal, output a string in the format “yes PRODUCT_VALUE” , otherwise write on the console "no ODD_PRODUCT_VALUE EVEN_PRODUCT_VALUE"
С моето решение стигам до 90/100.
Забелязах,че времето което използвам е малко повече от допустимото.
Въпросът ми е това ли е причината ,поради която съдията ми реже 10/100 ?
Ето и линк към кода ми: