QOJ.ac
QOJ
ID | 题目 | 提交者 | 结果 | 用时 | 内存 | 语言 | 文件大小 | 提交时间 | 测评时间 |
---|---|---|---|---|---|---|---|---|---|
#315261 | #8169. R-Connected Components | ucup-team1005# | Compile Error | / | / | C++14 | 1.8kb | 2024-01-27 09:52:44 | 2024-01-27 09:52:44 |
Due to the privacy settings of the submitter, you are not allowed to view this code.
详细
answer.code: In function ‘int test()’: answer.code:30:16: warning: structured bindings only available with ‘-std=c++17’ or ‘-std=gnu++17’ [-Wc++17-extensions] 30 | auto [x, y] = c.front(); c.pop(); | ^ answer.code:31:21: warning: structured bindings only available with ‘-std=c++17’ or ‘-std=gnu++17’ [-Wc++17-extensions] 31 | for (auto [dx, dy] : dv) { | ^ answer.code: In function ‘void solve()’: answer.code:58:11: error: ‘gcd’ was not declared in this scope 58 | g = gcd(g, i); | ^~~ answer.code:68:13: warning: structured bindings only available with ‘-std=c++17’ or ‘-std=gnu++17’ [-Wc++17-extensions] 68 | for (auto [x, y] : dv) { | ^