List Generators
Very easy
Execution time limit is 1 second
Runtime memory usage limit is 64 megabytes
The program takes a list of integers s as input. Your task is to output the following lists, each on a separate line:
A list containing the squares of each element in s.
A list containing the remainders when each element of s is divided by 11.
A list containing only the even numbers from s.
A list containing only the elements of s that have an odd number of digits.
A list containing only the two-digit numbers from s, with each repeated 2 times consecutively.
A list containing the elements of s that are located at positions which are not multiples of 3.
Input
The numbers are provided in a single line, separated by spaces.
Output
For each of the six lines, output the corresponding list in standard python format.
Examples
Input #1
Answer #1
Submissions 941
Acceptance rate 23%