outputstandard output
If you have ever interacted with a cat, you have probably noticed that they are quite particular about how to pet them. Here is an approximate map of a normal cat.
However, some cats won’t tolerate this nonsense from the humans. Here is a map of a grumpy cat.
You have met a cat. Can you figure out whether it’s normal or grumpy?
Interaction
This is an interactive problem. Initially you’re not given any information about the cat. Instead, the cat is divided into ten areas, indexed from 0 to 9.
In one query you can choose which area you’ll pet and print the corresponding index to standard out. You will get the cat’s response, as depicted on the corresponding map, via standard in. For simplicity all responses are written in lowercase.
Once you’re certain what type of cat you’re dealing with, output “normal” or “grumpy” to standard out.
Note
Please make sure to use the stream flushing operation after each query in order not to leave part of your output in some buffer.
啊哈哈哈这题太逗了。
第一次做交互式题目,通过你的输出来给输入,判断是普通猫还是爆爆猫。
因为是愚人节专场,所以隐藏了一个条件:必须以最快的速度给出答案,否则如果是一只坏脾气猫猫会炸毛。
ac代码:
public class Main {
public static void main(String[] args) {
Scanner reader = new Scanner(System.in);
for (int i = 0; i < 10; i++) {
System.out.println(i);
System.out.flush();
String str = reader.nextLine();
if (str.contains("terrible") || str.contains("worse") || str.contains("go") || str.contains("are")
|| str.contains("no way") || str.contains("even")) {
System.out.println("grumpy");
return;
} else if (str.contains("great") || str.contains("think") || str.contains("touch")
|| str.contains("not bad") || str.contains("cool")) {
System.out.println("normal");
return;
}
}
}
}
不知道为什么题目说要刷新缓冲区,反正跟着做了。