Submit | All submissions | Best solutions | Back to list |
EXPECT - Life, the Universe, and Everything (Interactive) |
Note for Interactive problem setters: if you are stucked on how to write a interactive problem judge, you may send a mail to "blue.mary.me@qq.com". It will send you the custom judge of this problem.
Your program is to use the brute-force approach in order to find the Answer to Life, the Universe, and Everything. More precisely... rewrite small numbers from input to output. Stop processing input after reading in the number 42. All numbers at input are integers of one or two digits.
Interactive Protocol
You should communicate with Judge using standard input and output.
Attention: the program should clear the output buffer after printing each line.
It can be done using fflush(stdout) command or by setting the proper type of buffering at the beginning of the execution - setlinebuf(stdout).Each time the judge will give you a number. You should rewrite this number to standard output. If this number equals 42, after rewriting your program should terminate immediately.
Example
The example of communication.
Input: 3 15 42 Output: 3 15 42
Attention: the program should clear the output buffer after printing each line.
Reference
Please pay attention that: your program should NOT output any extra characters like "J","P" or “:". Follow the interactive protocol strictly. A sample program (in C++) that can get Accepted is as the following:
Added by: | Fudan University Problem Setters |
Date: | 2008-05-24 |
Time limit: | 10s |
Source limit: | 50000B |
Memory limit: | 1536MB |
Cluster: | Cube (Intel G860) |
Languages: | All except: C99 ERL GOSU JS-RHINO NODEJS PERL6 VB.NET |
Resource: | A sample of Interactive problems |
hide comments
|
|||||||
2018-01-25 06:06:09
In C++ cout << flush; orcout.flush() can be used to flush the buffer. Also cout << endl; adds newline + flush. |
|||||||
2017-11-08 14:49:15
not sure why the source code is given as reference? |
|||||||
2017-11-06 16:34:11
how to fflush in c++ |
|||||||
2017-11-06 04:27:19 Lionel Messi
what is the purpose or meaning of this problem? :-? |
|||||||
2017-10-11 11:53:01
It seems that there's no way to flush stdout in Swift... Anyone has ideas? |
|||||||
2017-08-21 20:34:42
simple |
|||||||
2017-06-22 12:35:17
. Last edit: 2017-06-22 12:36:12 |
|||||||
2017-05-17 15:51:43 Aritra Chatterjee
Done feeling happy :-) |