Compile Error

/in/foo.cc: In function 'int main()':
/in/foo.cc:16:25: error: no matching function for call to 'max(int&, long long int&)'
   16 |                 maxa=max(maxa,sum);
      |                      ~~~^~~~~~~~~~
In file included from /usr/include/c++/12/string:50,
                 from /usr/include/c++/12/bits/locale_classes.h:40,
                 from /usr/include/c++/12/bits/ios_base.h:41,
                 from /usr/include/c++/12/ios:42,
                 from /usr/include/c++/12/istream:38,
                 from /usr/include/c++/12/sstream:38,
                 from /usr/include/c++/12/complex:45,
                 from /usr/include/c++/12/ccomplex:39,
                 from /usr/include/x86_64-linux-gnu/c++/12/bits/stdc++.h:54,
                 from /in/foo.cc:1:
/usr/include/c++/12/bits/stl_algobase.h:254:5: note: candidate: 'template<class _Tp> const _Tp& std::max(const _Tp&, const _Tp&)'
  254 |     max(const _Tp& __a, const _Tp& __b)
      |     ^~~
/usr/include/c++/12/bits/stl_algobase.h:254:5: note:   template argument deduction/substitution failed:
/in/foo.cc:16:25: note:   deduced conflicting types for parameter 'const _Tp' ('int' and 'long long int')
   16 |                 maxa=max(maxa,sum);
      |                      ~~~^~~~~~~~~~
/usr/include/c++/12/bits/stl_algobase.h:300:5: note: candidate: 'template<class _Tp, class _Compare> const _Tp& std::max(const _Tp&, const _Tp&, _Compare)'
  300 |     max(const _Tp& __a, const _Tp& __b, _Compare __comp)
      |     ^~~
/usr/include/c++/12/bits/stl_algobase.h:300:5: note:   template argument deduction/substitution failed:
/in/foo.cc:16:25: note:   deduced conflicting types for parameter 'const _Tp' ('int' and 'long long int')
   16 |                 maxa=max(maxa,sum);
      |                      ~~~^~~~~~~~~~
In file included from /usr/include/c++/12/algorithm:61,
                 from /usr/include/x86_64-linux-gnu/c++/12/bits/stdc++.h:65:
/usr/include/c++/12/bits/stl_algo.h:5746:5: note: candidate: 'template<class _Tp> _Tp std::max(initializer_list<_Tp>)'
 5746 |     max(initializer_list<_Tp> __l)
      |     ^~~
/usr/include/c++/12/bits/stl_algo.h:5746:5: note:   template argument deduction/substitution failed:
/in/foo.cc:16:25: note:   mismatched types 'std::initializer_list<_Tp>' and 'int'
   16 |                 maxa=max(maxa,sum);
      |                      ~~~^~~~~~~~~~
/usr/include/c++/12/bits/stl_algo.h:5756:5: note: candidate: 'template<class _Tp, class _Compare> _Tp std::max(initializer_list<_Tp>, _Compare)'
 5756 |     max(initializer_list<_Tp> __l, _Compare __comp)
      |     ^~~
/usr/include/c++/12/bits/stl_algo.h:5756:5: note:   template argument deduction/substitution failed:
/in/foo.cc:16:25: note:   mismatched types 'std::initializer_list<_Tp>' and 'int'
   16 |                 maxa=max(maxa,sum);
      |                      ~~~^~~~~~~~~~

信息

递交者
类型
递交
题目
P2850 数位和2024.12GESP2级T2
语言
C++
递交时间
2025-12-10 20:23:55
评测时间
2025-12-10 20:23:55
评测机
分数
0
总耗时
0ms
峰值内存
0 Bytes