QOJ.ac
QOJ
ID | Problem | Submitter | Result | Time | Memory | Language | File size | Submit time | Judge time |
---|---|---|---|---|---|---|---|---|---|
#21146 | #676. Travelling Merchant | qwq | Compile Error | / | / | C++98 | 2.0kb | 2022-03-01 22:22:13 | 2022-05-18 04:10:57 |
Due to the privacy settings of the submitter, you are not allowed to view this code.
Details
answer.code:8:24: error: ‘>>’ should be ‘> >’ within a nested template argument list 8 | vector<vector<long long>> dist; | ^~ | > > answer.code:9:24: error: ‘>>’ should be ‘> >’ within a nested template argument list 9 | vector<vector<long long>> grid; | ^~ | > > answer.code:11:18: error: ‘>>’ should be ‘> >’ within a nested template argument list 11 | vector<vector<int>> buy; | ^~ | > > answer.code:12:18: error: ‘>>’ should be ‘> >’ within a nested template argument list 12 | vector<vector<int>> sell; | ^~ | > > answer.code:14:18: error: ‘>>’ should be ‘> >’ within a nested template argument list 14 | vector<vector<int>> earn; | ^~ | > > answer.code: In function ‘bool test(long long int)’: answer.code:18:33: error: ‘>>’ should be ‘> >’ within a nested template argument list 18 | grid = vector<vector<long long>>(N, vector<long long>(N, LLONG_MAX/2)); | ^~ | > > answer.code: In function ‘int main()’: answer.code:58:33: error: ‘>>’ should be ‘> >’ within a nested template argument list 58 | dist = vector<vector<long long>>(N, vector<long long>(N, LLONG_MAX/2)); | ^~ | > > answer.code:59:26: error: ‘>>’ should be ‘> >’ within a nested template argument list 59 | buy = vector<vector<int>>(N, vector<int>(K, -1)); | ^~ | > > answer.code:60:27: error: ‘>>’ should be ‘> >’ within a nested template argument list 60 | sell = vector<vector<int>>(N, vector<int>(K, -1)); | ^~ | > > answer.code:61:27: error: ‘>>’ should be ‘> >’ within a nested template argument list 61 | earn = vector<vector<int>>(N, vector<int>(N, 0)); | ^~ | > >