COCI '10 Contest 6 #1 Okulpjanje

View as PDF

Submit solution


Points: 3 (partial)
Time limit: 1.0s
Memory limit: 32M

Problem type

The day after a giant party everybody wants to know a couple of things - who was at the party and how many people were there? Since parties are usually pretty big, nobody actually knows the correct number of people who were there. Your friend Krešo was on a party last Saturday and he knows how many people there were per 1 m^2.

While reading 5 newspaper articles about that party, you have written down 5 numbers, specifying how many people were present at the party according to each of the articles. You believe Krešo's information and you'd like to know how much each of the articles was wrong.

Input Specification

The first line of input contains two positive integers, L_j (1 \leq L_j \leq 10), the number of people per m^2, and P (1 \leq P \leq 1\,000), the area of the room the party was held in.

The second line of input contains 5 positive integers less than 10^6, the number of people present at the party according to each of the articles.

Output Specification

The first and only line of output must contain 5 numbers, the difference between the number of people written in an article and Krešo's (correct) number.

Sample Input 1

1 10
10 10 10 10 10

Sample Output 1

0 0 0 0 0

Sample Input 2

5 20
99 101 1000 0 97

Sample Output 2

-1 1 900 -100 -3

Comments

There are no comments at the moment.