Олимпиадный тренинг

Задача 37524. Operations with vectors


Задача

Темы: NumPy
The input is 2 lists of integers (they are vectors of equal length, i.e. with the same number of elements).

Using vector operations, create and store in a V Numpy variable a vector with the coordinate-wise products of every second number from the first list and every second number from the second list, reversed
Display this vector on the screen.

Examples
# Input Output
1 1 2 3 4
10 20 30 40
[40 60]