单点时限: 1.0 sec
内存限制: 256 MB
我想了一个数,要让你猜一猜。
big
) 或者小了 (small
) 或者正好 (equal
)。2 -3 -1 0
big small small equal
这是一个交互题。你要先猜,输出到标准输出流 (stdout
)。对于我的回答,你要从标准输入流中读入 (stdin
)。
你需要清空缓存,在 C 中使用 fflush
,C++ 中使用 flush
或 endl
,在 Python 中使用 sys.stdout.flush()
。
你可能会遇到 Idleness Limit Exceeded
,这种错误表示你的程序「太闲了」。你可能在等待输入,或者只是超时了(而我并不知道,以为你闲着)。
请在猜中(获得equal
)之后结束程序。