QOJ.ac
QOJ
ID | Problem | Submitter | Result | Time | Memory | Language | File size | Submit time | Judge time |
---|---|---|---|---|---|---|---|---|---|
#141771 | #6661. 야유회 | alch07 | Compile Error | / | / | C++14 | 1.3kb | 2023-08-17 23:43:11 | 2023-08-17 23:43:14 |
Due to the privacy settings of the submitter, you are not allowed to view this code.
Details
answer.code: In function ‘void init()’: answer.code:14:15: error: ‘__builtin__popcount’ was not declared in this scope; did you mean ‘__builtin_popcount’? 14 | while(__builtin__popcount(cur) != 10){ | ^~~~~~~~~~~~~~~~~~~ | __builtin_popcount answer.code:19:9: error: redeclaration of ‘int cur’ 19 | int cur = 0; | ^~~ answer.code:12:9: note: ‘int cur’ previously declared here 12 | int cur = 0; | ^~~ answer.code:26:9: error: redeclaration of ‘int cur’ 26 | int cur = -0; | ^~~ answer.code:12:9: note: ‘int cur’ previously declared here 12 | int cur = 0; | ^~~ answer.code: In function ‘int diff(int, int)’: answer.code:38:12: error: ‘log2’ was not declared in this scope 38 | return log2(d); | ^~~~