Submit | All submissions | Best solutions | Back to list |
JULKA - Julka |
Julka surprised her teacher at preschool by solving the following riddle:
Klaudia and Natalia have 10 apples together, but Klaudia has two apples more than Natalia. How many apples does each of he girls have?
Julka said without thinking: Klaudia has 6 apples and Natalia 4 apples. The teacher tried to check if Julka's answer wasn't accidental and repeated the riddle every time increasing the numbers. Every time Julka answered correctly. The surprised teacher wanted to continue questioning Julka, but with big numbers she could't solve the riddle fast enough herself. Help the teacher and write a program which will give her the right answers.
Task
Write a program which
- reads from standard input the number of apples the girls have together and how many more apples Klaudia has,
- counts the number of apples belonging to Klaudia and the number of apples belonging to Natalia,
- writes the outcome to standard output
Input
Ten test cases (given one under another, you have to process all!). Every test case consists of two lines. The first line says how many apples both girls have together. The second line says how many more apples Klaudia has. Both numbers are positive integers. It is known that both girls have no more than 10100 (1 and 100 zeros) apples together. As you can see apples can be very small.
Output
For every test case your program should output two lines. The first line should contain the number of apples belonging to Klaudia. The second line should contain the number of apples belonging to Natalia.
Example
Input: 10 2 [and 9 test cases more] Output: 6 4 [and 9 test cases more]
Added by: | Adam Dzedzej |
Date: | 2004-06-08 |
Time limit: | 2s |
Source limit: | 50000B |
Memory limit: | 1536MB |
Cluster: | Cube (Intel G860) |
Languages: | All except: NODEJS PERL6 VB.NET |
Resource: | Internet Contest Pogromcy Algorytmow (Algorithm Tamers) Round II, 2003 |
hide comments
|
||||||||||||||
2015-08-08 16:58:00
good |
||||||||||||||
2015-07-06 13:07:29 Shivam Singh
Important Points which to avoid a WA 1. remove the starting 0's 008 is not a valid output, 8 is 2.important test cases (0,0) and (1000,998) 3. make sure the string is bigger than 102 characters(else segmentation fault will occur) |
||||||||||||||
2015-07-03 09:02:36 tarunsai
what should be the output of 9 4 |
||||||||||||||
2015-06-29 20:53:41
Finally got an AC!!! tips for future learners like me :- 1) you have to learn to debug your program , because this one takes a lot of small hacks 2) try to do it in C/C++ which will teach you the actual difficulty which lies in this problem #) do not panic if the code goes to about 60-70 lines , i guarantee if it's 60-70 you have written good code :) . |
||||||||||||||
2015-06-29 20:10:08 Vars
easy one using java :) |
||||||||||||||
2015-06-24 11:41:05 Anurag Pasi
I have spent so much time in debugging, can some1 debug it , for all test cases it is showing correct answer acc. to me but on SPOJ its showing WA, plz point out da mistake, anyone?? here is my program link <snip> Last edit: 2022-07-04 23:33:22 |
||||||||||||||
2015-06-23 19:16:14 Saurabh
Java getting NZEC? |
||||||||||||||
2015-06-19 05:11:15
dont use cin.getline() to read the numbers......instead use cin>>.............. |
||||||||||||||
2015-06-13 14:31:59 harshith
Hi..My code is giving correct answer for every test case..., but is not accepted..any help? <snip> Last edit: 2022-07-04 23:33:17 |
||||||||||||||
2015-06-12 07:14:45
Simple for JAVA use BigInteger |