ABSYS - Anti-Blot System
Jimmy is a hard-working pupil in his second year at primary school. Recently he decided to convert all his notes into an electronic version. Sadly, he found that his math notes were full of ink blots.
He scanned the notes and sent them through his own OCR package
(yes, he coded it all by himself at the age of 8).
The OCR package replaced all ink blots by the string "machula
".
Problem specification
You are given Jimmy's notes, processed by the OCR. They contain simple math exercises, which were used to practice addition on positive integers. Your task is to recover the damaged part of the notes.
Input specification
The first line of the input file contains an integer T specifying the number of test cases. Each test case is preceded by a blank line.
Each test case consists of exactly one line.
The line represents an equation of the form "number + number = number
",
where each number
is a positive integer.
One part of the equation will be replaced by the string "machula
".
The string always covers a contiguous non-empty sequence of digits, possibly even an entire
number. You may assume that for each equation in the input there will be
exactly one way to fill in the missing digits.
Output specification
For each test case, the output shall contain one line of the form
"number + number = number
". The line must represent the equation
from that test case with all missing digits filled in.
Example
Input: 3 23 + 47 = machula 3247 + 5machula2 = 3749 machula13 + 75425 = 77038 Output: 23 + 47 = 70 3247 + 502 = 3749 1613 + 75425 = 77038
Note: int in C++/C/Java or longint in Pascal is enough.
hide comments
godfrey_17897:
2016-01-29 11:45:45
Don't think much, take each as separate string :)
|
|
abc_c:
2016-01-21 14:16:05
Thanks Dushyant Singh for your advice.
|
|
frillyfrufru:
2015-12-19 12:00:43
Fix time limit, Java doesn't even load in 0.133s. |
|
kiner_shah:
2015-12-05 17:09:22
First go AC! Yo! |
|
tesla1729:
2015-11-27 10:45:39
Lmao,Be Careful while printing !!! |
|
sumbayak_ae:
2015-11-02 11:38:54
what is the meaning of 'preceded by a blank line'?
|
|
skrishna99:
2015-10-31 16:33:20
almost all problems with best algorithm are getting TLE for java , i got correct answer in Ideaone but TLE here . For Java people it is annoying . |
|
garmel:
2015-10-27 19:59:12
hhh.... cout<<'\n'; cost me 3 WA..... In general, it's an easy one, use strings not char because you don't want to get stuck with blank spaces.... In addition, use an array of 3 .... don't even look to machula.....if you are working with c++ isalpha is enough to make tab[i]=-1 and do tests Last edit: 2015-10-27 19:59:38 |
|
rohan999:
2015-10-25 08:49:44
those using stoi() function, please use c++ 14, to avoid compile time errors;
|
|
paulpaul1076:
2015-10-24 17:02:39
what a fucking joke, why would anyone give such input format? |
Added by: | Fudan University Problem Setters |
Date: | 2007-12-01 |
Time limit: | 1s |
Source limit: | 50000B |
Memory limit: | 1536MB |
Cluster: | Cube (Intel G860) |
Languages: | All except: C99 ERL JS-RHINO |
Resource: | IPSC 2007 |