QOJ.ac
QOJ
ID | Problem | Submitter | Result | Time | Memory | Language | File size | Submit time | Judge time |
---|---|---|---|---|---|---|---|---|---|
#782129 | #9799. Magical Palette | aYi_7 | Compile Error | / | / | C++17 | 290b | 2024-11-25 18:59:04 | 2024-11-25 18:59:04 |
Judging History
answer
c if(ps&1)
{
if(huan%2==0)
{
printf("WA\n");
}
else printf("AC\n");
}
else
{
if(huan%2==1)
{
printf("WA\n");
}
else printf("AC\n");
}
Details
answer.code:1:1: error: ‘c’ does not name a type 1 | c if(ps&1) | ^ answer.code:9:8: error: expected unqualified-id before ‘else’ 9 | else | ^~~~