Problem
Each contest - there are approximately 1500 - 2000 users who participate for the 1st time and get rated.
The Chef wanted to tell new users some tricks for their 1st contest:
- Before the contest - you don’t have any rating. So even if you make a single submission - you will become part of the contest rank list and you will get a rating.
- If you want your rating to increase - give the entire 3 hours to the contest & don’t quit! If you keep trying till the end, and the more time you get, the more problems you can solve. That means larger rating increases!
- Do not ask your friends for their code. If you copy paste their code, you will get caught during plagiarism checks and your rating will be reduced by 275 points, along with a permanent black mark on your profile.
Now to the problem:
In a contest where new users visited the contest,
- users just saw the problems and didn’t make any submissions and hence won’t get any rating.
- users who made a submission but could not solve any problem correctly. Thus, after the contest, they will get a rating in the range .
- Everyone else could correctly solve at least problem. Thus, they will get a rating strictly greater than after the contest.
You need to output the number of new users in the contest who, after the contest, will get a rating and also the number of new users who will get a rating strictly greater than .
Input Format
- Each input file contains of a single line, with three integers and - the number of new users, the number of users who just saw the problem and didn't make any submission, and the number of users who made a submission but could not solve any problem correctly.
Output Format
Output two integers separated by a space in a single line - the number of new users who will get a rating at the end of the contest and the number of new users who will get a rating higher than.
Constraints
Sample 1:
10 3 2
7 5
Explanation:
There were new users. Among those , didn't make any submissions. This means that the other users made submissions and will get a rating. This is the first integer of the output.
Now, among these users, couldn't solve any problem even though they submitted and tried. So, they will get a rating less than equal to . The other users were able to solve at least problem and hence will get a rating greater than . Hence, the second integer of the output is .
Solution
#include <iostream>
using namespace std;
// Solution from : Code Radius [ https://radiuscode.blogspot.com/ ]
int main() {
int n,a,b;
cin>>n>>a>>b;
int p=n-a;
int k=p-b;
cout<<p<<" ";
cout<<k<<endl;
return 0;
}