QOJ.ac
QOJ
ID | Problem | Submitter | Result | Time | Memory | Language | File size | Submit time | Judge time |
---|---|---|---|---|---|---|---|---|---|
#273665 | #7879. Colorful Balloons | ucup-team159# | Compile Error | / | / | C++14 | 16.5kb | 2023-12-03 02:45:18 | 2023-12-03 02:45:19 |
Due to the privacy settings of the submitter, you are not allowed to view this code.
Details
answer.code: In static member function ‘static int yosupo::Printer::calc_len(uint64_t)’: answer.code:302:29: error: ‘countl_zero’ is not a member of ‘std’ 302 | int i = ((63 - std::countl_zero(x)) * 3 + 3) / 10; | ^~~~~~~~~~~ answer.code: At global scope: answer.code:595:27: error: use of deleted function ‘yosupo::Scanner::Scanner(const yosupo::Scanner&)’ 595 | Scanner sc = Scanner(stdin); | ^ answer.code:99:5: note: declared here 99 | Scanner(const Scanner&) = delete; | ^~~~~~~ answer.code:596:28: error: use of deleted function ‘yosupo::Printer::Printer(const yosupo::Printer&)’ 596 | Printer pr = Printer(stdout); | ^ answer.code:225:8: note: ‘yosupo::Printer::Printer(const yosupo::Printer&)’ is implicitly deleted because the default definition would be ill-formed: 225 | struct Printer { | ^~~~~~~ answer.code:225:8: error: use of deleted function ‘std::__cxx11::basic_stringstream<_CharT, _Traits, _Alloc>::basic_stringstream(const std::__cxx11::basic_stringstream<_CharT, _Traits, _Alloc>&) [with _CharT = char; _Traits = std::char_traits<char>; _Alloc = std::allocator<char>]’ In file included from answer.code:13: /usr/include/c++/11/sstream:1057:7: note: declared here 1057 | basic_stringstream(const basic_stringstream&) = delete; | ^~~~~~~~~~~~~~~~~~