QOJ.ac
QOJ
ID | Problem | Submitter | Result | Time | Memory | Language | File size | Submit time | Judge time |
---|---|---|---|---|---|---|---|---|---|
#45637 | #4565. Rarest Insects | ZhangYiDe | Compile Error | / | / | C++14 | 5.5kb | 2022-08-24 13:48:40 | 2022-08-24 13:48:41 |
Due to the privacy settings of the submitter, you are not allowed to view this code.
Details
implementer.cpp:8:8: warning: inline variables are only available with ‘-std=c++17’ or ‘-std=gnu++17’ 8 | static inline constexpr int kMaxQueries = 40000; | ^~~~~~ answer.code: In function ‘int min_cardinality(int)’: answer.code:156:17: error: ‘move_inside’ was not declared in this scope 156 | move_inside(i); | ^~~~~~~~~~~ answer.code:157:23: error: ‘press_button’ was not declared in this scope 157 | res = press_button(); | ^~~~~~~~~~~~ answer.code:159:25: error: ‘move_outside’ was not declared in this scope 159 | move_outside(i); | ^~~~~~~~~~~~ answer.code:166:21: error: ‘move_outside’ was not declared in this scope 166 | for(int i:v)move_outside(i); | ^~~~~~~~~~~~ answer.code:173:25: error: ‘move_inside’ was not declared in this scope 173 | move_inside(i); | ^~~~~~~~~~~ answer.code:174:34: error: ‘press_button’ was not declared in this scope 174 | val[i] = press_button(); | ^~~~~~~~~~~~ answer.code:176:33: error: ‘move_outside’ was not declared in this scope 176 | move_outside(i); | ^~~~~~~~~~~~ answer.code:186:37: error: ‘move_outside’ was not declared in this scope 186 | For(i,0,n)if(ada[i])move_outside(i), ada[i] = 0; | ^~~~~~~~~~~~