QOJ.ac
QOJ
ID | Problem | Submitter | Result | Time | Memory | Language | File size | Submit time | Judge time |
---|---|---|---|---|---|---|---|---|---|
#158803 | #7112. XOR Clique | ucup-team1157# | Compile Error | / | / | C++20 | 655b | 2023-09-02 17:02:35 | 2023-09-02 17:02:35 |
Due to the privacy settings of the submitter, you are not allowed to view this code.
Details
answer.code:3:17: error: expected initializer before numeric constant 3 | const int MAX_N 100000; | ^~~~~~ answer.code: In function ‘void solve()’: answer.code:19:22: error: ‘MAX_N’ was not declared in this scope 19 | int sequence[MAX_N]; | ^~~~~ answer.code:21:30: error: ‘sequence’ was not declared in this scope 21 | scanf("%d", &sequence[i]); | ^~~~~~~~ answer.code:27:34: error: ‘sequence’ was not declared in this scope 27 | count[count_ones(sequence[i])]++; | ^~~~~~~~ answer.code:31:33: error: invalid types ‘<unresolved overloaded function type>[int]’ for array subscript 31 | mx = (mx > count[i]) ? mx : count[i]; | ^ answer.code:31:50: error: invalid types ‘<unresolved overloaded function type>[int]’ for array subscript 31 | mx = (mx > count[i]) ? mx : count[i]; | ^ answer.code:18:14: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result] 18 | scanf("%d", &n); | ~~~~~^~~~~~~~~~