Solution: Knaves and Knights
Answer: CLASH

Written by Xue Heng

The first thing to do is to identify who the knaves (liars) and knights (truth-tellers) are. A sample solve path is as follows:

Set 1:
B, C, D have to all be knights (if one of them is a knight, then all of them have to be knights; if one of them is a knave, then the other person they are referring to has to be a knight, then they all still have to be knights, so it is not possible for any of them to be knaves). Thus E is a knave and hence A is also a knave.
Set 2:
At most one of these statements can be true. If they are all false, then A will be a knight (contradiction), so exactly one of them has to be true. So E is a knight, and everyone else are knaves.
Set 3:
Suppose A is a knight. Then C is a knight. By A’s statement, B, D, E are all knaves, a contradiction, since if A and C are the only knights, E is telling the truth. So A is a knave. Suppose B is a knave. Then there are at least three knaves, which means that there are at most two knights, and that A is telling the truth, a contradiction. So B is a knight. B being a knight directly implies that E is a knight. Suppose that C is a knave. Then he is telling the truth, since both A and C are knaves so there can be at most three knights. This is a contradiction, so C is a knight. Then D has to be a knave.
Set 4:
A and C directly contradict each other, so B must be a knave. D and E directly contradict each other, so one has to be a knight (E) and the other a knave (D). Since A and C comprise one knave and one knight, and given the identities of the other three, A is a knave and C is a knight.
Set 5:
A and C contradict each other, so one must be a knave and the other a knight. A can’t be a knight, or else D’s claim that both A and C are knaves are correct, so A is the knave and C is the knight. Then E is a knave and B is a knight.
Set 6:
D is obviously lying, because a knight will never call himself a knave. So D is a knave, and to make D’s statement false, E has to be a knight. Then C is a knight, and A and B are knaves.
Set 7:
If B is a knave, B is lying, so everyone is a knave and must all be lying. But this means that A is telling the truth, a contradiction, so B has to be a knight. We next examine C’s statement. If C is a knave, then C is lying, so B, C, D, E are all knaves, given that A is already a knight. Again, this means that E is telling the truth, a contradiction, so C has to be a knight. We next examine D’s statement. If D is a knave, then D is lying, so A, D, E are all knaves, given that B, C are already knights. Once again, Again, this means that E is telling the truth, a contradiction, so D has to be a knight. Once we know that B, C, D are knights, it follows that A, E have to be knaves.

We next notice that the people are suspiciously grouped into groups of five, which strongly suggests binary. This is confirmed by the flavor text, which hints at 0 and 1. Taking a knave to represent 0 and a knight to represent 1 (in logic, 0 usually represents false and 1 represents true), we have seven binary strings in order: 01110, 00001, 01101, 00101, 01100, 00101, 01110. Converting these strings to letters, we get the cluephrase NAME LEN.

Looking at the lengths of the people’s names, those with an odd length are knights and those with an even length are knaves, which is consistent with odd being 1 (mod 2) and even being 0 (mod 2). Now, we have a way of telling a person’s identity from their name.

Turning to the 15 statements at the end, we can identify the identities of the people and use the information they provide to deduce the final answer. Namely, Bryan, Linus, Madison, Melissa, Nicky, Patrick, Timothy and Zoe are telling the truth; and everyone else is lying. Summarizing the statements given by everyone, we have the following information:
The answer is exactly five letters long, with all five letters being distinct
The answer has exactly one vowel, which is not I or U or E (so it has to be A or O)
The answer has to have at least one H, at least one S, at least one L, and at least one of C, P, V, Y
The answer has both a 3-letter and 4-letter substring which are english words

Using any online word search tool you like (or you could just think of the answer yourself!), you will be able to get the answer CLASH. A sample nutrimatic query would be “< hsl[ao][cpvy] >”, which gives CLASH as the top result. We note other results from the nutrimatic query do not contain both a 3-letter and a 4-letter substring which is an english word, so the answer is CLASH, which does indeed contain LASH and ASH as substrings.

Author's Notes

I wanted to write a simple logic puzzle for round 1 which is accessible to newer solvers. It includes a common encoding method used in puzzle hunts (binary), as well as a final section that might be much easier if an online word finding/filtering tool was used, encouraging newer solvers to use such internet tools freely and to their advantage. Even if you are an experienced solver who breezed through the puzzle, I hope that you found it fun.