QOJ.ac
QOJ
ID | Problem | Submitter | Result | Time | Memory | Language | File size | Submit time | Judge time |
---|---|---|---|---|---|---|---|---|---|
#443458 | #8582. 점프 게임 | ZhangYiDe | Compile Error | / | / | C++23 | 609b | 2024-06-15 15:37:29 | 2024-06-15 15:37:29 |
Due to the privacy settings of the submitter, you are not allowed to view this code.
Details
answer.code: In function ‘long long int play_game(long long int, int, long long int, std::vector<long long int>, std::vector<long long int>)’: answer.code:14:9: error: ‘vll’ was not declared in this scope; did you mean ‘ll’? 14 | vll l = L, r = R; | ^~~ | ll answer.code:17:27: error: ‘l’ was not declared in this scope 17 | a[l[i]]++; | ^ answer.code:18:27: error: ‘r’ was not declared in this scope 18 | a[r[i + 1]]--; | ^ answer.code:29:32: error: ‘r’ was not declared in this scope 29 | res += r[i] - l[i] + 1; | ^ answer.code:29:39: error: ‘l’ was not declared in this scope 29 | res += r[i] - l[i] + 1; | ^