submission_id
stringlengths
10
10
problem_id
stringlengths
6
6
language
stringclasses
3 values
code
stringlengths
1
522k
compiler_output
stringlengths
43
10.2k
s458598535
p03737
C++
# include <iostream> #include <cstdlib> # include <vector> # include <limits> # include <algorithm> # include <map> # include <string> # include <functional> # include <cmath> # include <iomanip> using namespace std; int main() { string a, b, c; cin >> a >> b >> c; transform(a.begin(), a.end(), a.begin(), toupper); transform(b.begin(), b.end(), b.begin(), toupper); transform(c.begin(), c.end(), c.begin(), toupper); cout << a[0] <<b[0] << c[0] << endl; }
a.cc: In function 'int main()': a.cc:17:18: error: no matching function for call to 'transform(std::__cxx11::basic_string<char>::iterator, std::__cxx11::basic_string<char>::iterator, std::__cxx11::basic_string<char>::iterator, <unresolved overloaded function type>)' 17 | transform(a.begin(), a.end(), a.begin(), toupper); | ~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ In file included from /usr/include/c++/14/algorithm:61, from a.cc:6: /usr/include/c++/14/bits/stl_algo.h:4209:5: note: candidate: 'template<class _IIter, class _OIter, class _UnaryOperation> _OIter std::transform(_IIter, _IIter, _OIter, _UnaryOperation)' 4209 | transform(_InputIterator __first, _InputIterator __last, | ^~~~~~~~~ /usr/include/c++/14/bits/stl_algo.h:4209:5: note: template argument deduction/substitution failed: a.cc:17:18: note: couldn't deduce template parameter '_UnaryOperation' 17 | transform(a.begin(), a.end(), a.begin(), toupper); | ~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ /usr/include/c++/14/bits/stl_algo.h:4247:5: note: candidate: 'template<class _IIter1, class _IIter2, class _OIter, class _BinaryOperation> _OIter std::transform(_IIter1, _IIter1, _IIter2, _OIter, _BinaryOperation)' 4247 | transform(_InputIterator1 __first1, _InputIterator1 __last1, | ^~~~~~~~~ /usr/include/c++/14/bits/stl_algo.h:4247:5: note: candidate expects 5 arguments, 4 provided In file included from /usr/include/c++/14/algorithm:86: /usr/include/c++/14/pstl/glue_algorithm_defs.h:156:1: note: candidate: 'template<class _ExecutionPolicy, class _ForwardIterator1, class _ForwardIterator2, class _UnaryOperation> __pstl::__internal::__enable_if_execution_policy<_ExecutionPolicy, _ForwardIterator2> std::transform(_ExecutionPolicy&&, _ForwardIterator1, _ForwardIterator1, _ForwardIterator2, _UnaryOperation)' 156 | transform(_ExecutionPolicy&& __exec, _ForwardIterator1 __first, _ForwardIterator1 __last, _ForwardIterator2 __result, | ^~~~~~~~~ /usr/include/c++/14/pstl/glue_algorithm_defs.h:156:1: note: candidate expects 5 arguments, 4 provided /usr/include/c++/14/pstl/glue_algorithm_defs.h:162:1: note: candidate: 'template<class _ExecutionPolicy, class _ForwardIterator1, class _ForwardIterator2, class _ForwardIterator, class _BinaryOperation> __pstl::__internal::__enable_if_execution_policy<_ExecutionPolicy, _ForwardIterator2> std::transform(_ExecutionPolicy&&, _ForwardIterator1, _ForwardIterator1, _ForwardIterator2, _ForwardIterator, _BinaryOperation)' 162 | transform(_ExecutionPolicy&& __exec, _ForwardIterator1 __first1, _ForwardIterator1 __last1, _ForwardIterator2 __first2, | ^~~~~~~~~ /usr/include/c++/14/pstl/glue_algorithm_defs.h:162:1: note: candidate expects 6 arguments, 4 provided a.cc:18:18: error: no matching function for call to 'transform(std::__cxx11::basic_string<char>::iterator, std::__cxx11::basic_string<char>::iterator, std::__cxx11::basic_string<char>::iterator, <unresolved overloaded function type>)' 18 | transform(b.begin(), b.end(), b.begin(), toupper); | ~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ /usr/include/c++/14/bits/stl_algo.h:4209:5: note: candidate: 'template<class _IIter, class _OIter, class _UnaryOperation> _OIter std::transform(_IIter, _IIter, _OIter, _UnaryOperation)' 4209 | transform(_InputIterator __first, _InputIterator __last, | ^~~~~~~~~ /usr/include/c++/14/bits/stl_algo.h:4209:5: note: template argument deduction/substitution failed: a.cc:18:18: note: couldn't deduce template parameter '_UnaryOperation' 18 | transform(b.begin(), b.end(), b.begin(), toupper); | ~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ /usr/include/c++/14/bits/stl_algo.h:4247:5: note: candidate: 'template<class _IIter1, class _IIter2, class _OIter, class _BinaryOperation> _OIter std::transform(_IIter1, _IIter1, _IIter2, _OIter, _BinaryOperation)' 4247 | transform(_InputIterator1 __first1, _InputIterator1 __last1, | ^~~~~~~~~ /usr/include/c++/14/bits/stl_algo.h:4247:5: note: candidate expects 5 arguments, 4 provided /usr/include/c++/14/pstl/glue_algorithm_defs.h:156:1: note: candidate: 'template<class _ExecutionPolicy, class _ForwardIterator1, class _ForwardIterator2, class _UnaryOperation> __pstl::__internal::__enable_if_execution_policy<_ExecutionPolicy, _ForwardIterator2> std::transform(_ExecutionPolicy&&, _ForwardIterator1, _ForwardIterator1, _ForwardIterator2, _UnaryOperation)' 156 | transform(_ExecutionPolicy&& __exec, _ForwardIterator1 __first, _ForwardIterator1 __last, _ForwardIterator2 __result, | ^~~~~~~~~ /usr/include/c++/14/pstl/glue_algorithm_defs.h:156:1: note: candidate expects 5 arguments, 4 provided /usr/include/c++/14/pstl/glue_algorithm_defs.h:162:1: note: candidate: 'template<class _ExecutionPolicy, class _ForwardIterator1, class _ForwardIterator2, class _ForwardIterator, class _BinaryOperation> __pstl::__internal::__enable_if_execution_policy<_ExecutionPolicy, _ForwardIterator2> std::transform(_ExecutionPolicy&&, _ForwardIterator1, _ForwardIterator1, _ForwardIterator2, _ForwardIterator, _BinaryOperation)' 162 | transform(_ExecutionPolicy&& __exec, _ForwardIterator1 __first1, _ForwardIterator1 __last1, _ForwardIterator2 __first2, | ^~~~~~~~~ /usr/include/c++/14/pstl/glue_algorithm_defs.h:162:1: note: candidate expects 6 arguments, 4 provided a.cc:19:18: error: no matching function for call to 'transform(std::__cxx11::basic_string<char>::iterator, std::__cxx11::basic_string<char>::iterator, std::__cxx11::basic_string<char>::iterator, <unresolved overloaded function type>)' 19 | transform(c.begin(), c.end(), c.begin(), toupper); | ~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ /usr/include/c++/14/bits/stl_algo.h:4209:5: note: candidate: 'template<class _IIter, class _OIter, class _UnaryOperation> _OIter std::transform(_IIter, _IIter, _OIter, _UnaryOperation)' 4209 | transform(_InputIterator __first, _InputIterator __last, | ^~~~~~~~~ /usr/include/c++/14/bits/stl_algo.h:4209:5: note: template argument deduction/substitution failed: a.cc:19:18: note: couldn't deduce template parameter '_UnaryOperation' 19 | transform(c.begin(), c.end(), c.begin(), toupper); | ~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ /usr/include/c++/14/bits/stl_algo.h:4247:5: note: candidate: 'template<class _IIter1, class _IIter2, class _OIter, class _BinaryOperation> _OIter std::transform(_IIter1, _IIter1, _IIter2, _OIter, _BinaryOperation)' 4247 | transform(_InputIterator1 __first1, _InputIterator1 __last1, | ^~~~~~~~~ /usr/include/c++/14/bits/stl_algo.h:4247:5: note: candidate expects 5 arguments, 4 provided /usr/include/c++/14/pstl/glue_algorithm_defs.h:156:1: note: candidate: 'template<class _ExecutionPolicy, class _ForwardIterator1, class _ForwardIterator2, class _UnaryOperation> __pstl::__internal::__enable_if_execution_policy<_ExecutionPolicy, _ForwardIterator2> std::transform(_ExecutionPolicy&&, _ForwardIterator1, _ForwardIterator1, _ForwardIterator2, _UnaryOperation)' 156 | transform(_ExecutionPolicy&& __exec, _ForwardIterator1 __first, _ForwardIterator1 __last, _ForwardIterator2 __result, | ^~~~~~~~~ /usr/include/c++/14/pstl/glue_algorithm_defs.h:156:1: note: candidate expects 5 arguments, 4 provided /usr/include/c++/14/pstl/glue_algorithm_defs.h:162:1: note: candidate: 'template<class _ExecutionPolicy, class _ForwardIterator1, class _ForwardIterator2, class _ForwardIterator, class _BinaryOperation> __pstl::__internal::__enable_if_execution_policy<_ExecutionPolicy, _ForwardIterator2> std::transform(_ExecutionPolicy&&, _ForwardIterator1, _ForwardIterator1, _ForwardIterator2, _ForwardIterator, _BinaryOperation)' 162 | transform(_ExecutionPolicy&& __exec, _ForwardIterator1 __first1, _ForwardIterator1 __last1, _ForwardIterator2 __first2, | ^~~~~~~~~ /usr/include/c++/14/pstl/glue_algorithm_defs.h:162:1: note: candidate expects 6 arguments, 4 provided
s251783124
p03737
C++
#include <iostream> #include <cstdio> #include <algorithm> #include <cstdlib> #include <cstring> #include <cmath> using namespace std; #define FOR(i,a,b) for (int i = (a); i < (b); i++) #define REP(i,n) FOR(i,0,n) //最大公約数 long gcd(long a, long b){ if (a%b==0){ return b; } else{ return gcd(b,a%b); } } //最小公倍数 long lcm(long a, long b){ return (a*b) / gcd(a,b); } template<typename A, typename B> inline bool chmax(A &a, B b) { if (a < b) { a = b; return 1; } return 0; } template<typename A, typename B> inline bool chmin(A &a, B b) { if (a > b) { a = b; return 1; } return 0; } typedef long long ll; const ll INF = 1ll<<29; const ll MOD = 1000000007; const double EPS = 1e-10; char str[31]; char a[3]; int main(){ gets(str); int i = 0, j = 1; a[0] = str[0]; while (str[i] != '\n'){ if (str[i] == ' '){ a[j] = str[i+1]; j++; } i++; } int p = 'A' - 'a'; REP(i,3){ printf("%c", a[i]+p); } cout << endl; return 0; }
a.cc: In function 'int main()': a.cc:41:9: error: 'gets' was not declared in this scope; did you mean 'getw'? 41 | gets(str); | ^~~~ | getw
s980754457
p03737
C++
#define _USE_MATH_DEFINES // for C++ #include <cmath> #include <iostream> #include <iomanip> #include <string> #include <vector> #include <algorithm> #include <array> #include <iterator> #include <utility> #include <set> #include <random> #include <map> #include <stack> #include <queue> #include <list> #include <functional> #include <cstdlib> #define LL long long using namespace std; int main() { string a, b, c, s; cin >> a >> b >> c; s = { a[0],b[0],c[0] }; transform(s.begin(), s.end(), s.begin(), toupper); cout << s << endl; return 0; }
a.cc: In function 'int main()': a.cc:28:18: error: no matching function for call to 'transform(std::__cxx11::basic_string<char>::iterator, std::__cxx11::basic_string<char>::iterator, std::__cxx11::basic_string<char>::iterator, <unresolved overloaded function type>)' 28 | transform(s.begin(), s.end(), s.begin(), toupper); | ~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ In file included from /usr/include/c++/14/algorithm:61, from a.cc:7: /usr/include/c++/14/bits/stl_algo.h:4209:5: note: candidate: 'template<class _IIter, class _OIter, class _UnaryOperation> _OIter std::transform(_IIter, _IIter, _OIter, _UnaryOperation)' 4209 | transform(_InputIterator __first, _InputIterator __last, | ^~~~~~~~~ /usr/include/c++/14/bits/stl_algo.h:4209:5: note: template argument deduction/substitution failed: a.cc:28:18: note: couldn't deduce template parameter '_UnaryOperation' 28 | transform(s.begin(), s.end(), s.begin(), toupper); | ~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ /usr/include/c++/14/bits/stl_algo.h:4247:5: note: candidate: 'template<class _IIter1, class _IIter2, class _OIter, class _BinaryOperation> _OIter std::transform(_IIter1, _IIter1, _IIter2, _OIter, _BinaryOperation)' 4247 | transform(_InputIterator1 __first1, _InputIterator1 __last1, | ^~~~~~~~~ /usr/include/c++/14/bits/stl_algo.h:4247:5: note: candidate expects 5 arguments, 4 provided In file included from /usr/include/c++/14/algorithm:86: /usr/include/c++/14/pstl/glue_algorithm_defs.h:156:1: note: candidate: 'template<class _ExecutionPolicy, class _ForwardIterator1, class _ForwardIterator2, class _UnaryOperation> __pstl::__internal::__enable_if_execution_policy<_ExecutionPolicy, _ForwardIterator2> std::transform(_ExecutionPolicy&&, _ForwardIterator1, _ForwardIterator1, _ForwardIterator2, _UnaryOperation)' 156 | transform(_ExecutionPolicy&& __exec, _ForwardIterator1 __first, _ForwardIterator1 __last, _ForwardIterator2 __result, | ^~~~~~~~~ /usr/include/c++/14/pstl/glue_algorithm_defs.h:156:1: note: candidate expects 5 arguments, 4 provided /usr/include/c++/14/pstl/glue_algorithm_defs.h:162:1: note: candidate: 'template<class _ExecutionPolicy, class _ForwardIterator1, class _ForwardIterator2, class _ForwardIterator, class _BinaryOperation> __pstl::__internal::__enable_if_execution_policy<_ExecutionPolicy, _ForwardIterator2> std::transform(_ExecutionPolicy&&, _ForwardIterator1, _ForwardIterator1, _ForwardIterator2, _ForwardIterator, _BinaryOperation)' 162 | transform(_ExecutionPolicy&& __exec, _ForwardIterator1 __first1, _ForwardIterator1 __last1, _ForwardIterator2 __first2, | ^~~~~~~~~ /usr/include/c++/14/pstl/glue_algorithm_defs.h:162:1: note: candidate expects 6 arguments, 4 provided
s563745551
p03737
C++
# include <iostream> #include <cstdlib> # include <vector> # include <limits> # include <algorithm> # include <map> # include <string> # include <functional> # include <cmath> # include <iomanip> using namespace std; int main() { string a, b, c; cin >> a >> b >> c; transform(a.begin(), a.end(), a.begin(), toupper); transform(b.begin(), b.end(), b.begin(), toupper); transform(c.begin(), c.end(), c.begin(), toupper); cout << a[0] <<b[0] << c[0] << endl; }
a.cc: In function 'int main()': a.cc:17:18: error: no matching function for call to 'transform(std::__cxx11::basic_string<char>::iterator, std::__cxx11::basic_string<char>::iterator, std::__cxx11::basic_string<char>::iterator, <unresolved overloaded function type>)' 17 | transform(a.begin(), a.end(), a.begin(), toupper); | ~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ In file included from /usr/include/c++/14/algorithm:61, from a.cc:6: /usr/include/c++/14/bits/stl_algo.h:4209:5: note: candidate: 'template<class _IIter, class _OIter, class _UnaryOperation> _OIter std::transform(_IIter, _IIter, _OIter, _UnaryOperation)' 4209 | transform(_InputIterator __first, _InputIterator __last, | ^~~~~~~~~ /usr/include/c++/14/bits/stl_algo.h:4209:5: note: template argument deduction/substitution failed: a.cc:17:18: note: couldn't deduce template parameter '_UnaryOperation' 17 | transform(a.begin(), a.end(), a.begin(), toupper); | ~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ /usr/include/c++/14/bits/stl_algo.h:4247:5: note: candidate: 'template<class _IIter1, class _IIter2, class _OIter, class _BinaryOperation> _OIter std::transform(_IIter1, _IIter1, _IIter2, _OIter, _BinaryOperation)' 4247 | transform(_InputIterator1 __first1, _InputIterator1 __last1, | ^~~~~~~~~ /usr/include/c++/14/bits/stl_algo.h:4247:5: note: candidate expects 5 arguments, 4 provided In file included from /usr/include/c++/14/algorithm:86: /usr/include/c++/14/pstl/glue_algorithm_defs.h:156:1: note: candidate: 'template<class _ExecutionPolicy, class _ForwardIterator1, class _ForwardIterator2, class _UnaryOperation> __pstl::__internal::__enable_if_execution_policy<_ExecutionPolicy, _ForwardIterator2> std::transform(_ExecutionPolicy&&, _ForwardIterator1, _ForwardIterator1, _ForwardIterator2, _UnaryOperation)' 156 | transform(_ExecutionPolicy&& __exec, _ForwardIterator1 __first, _ForwardIterator1 __last, _ForwardIterator2 __result, | ^~~~~~~~~ /usr/include/c++/14/pstl/glue_algorithm_defs.h:156:1: note: candidate expects 5 arguments, 4 provided /usr/include/c++/14/pstl/glue_algorithm_defs.h:162:1: note: candidate: 'template<class _ExecutionPolicy, class _ForwardIterator1, class _ForwardIterator2, class _ForwardIterator, class _BinaryOperation> __pstl::__internal::__enable_if_execution_policy<_ExecutionPolicy, _ForwardIterator2> std::transform(_ExecutionPolicy&&, _ForwardIterator1, _ForwardIterator1, _ForwardIterator2, _ForwardIterator, _BinaryOperation)' 162 | transform(_ExecutionPolicy&& __exec, _ForwardIterator1 __first1, _ForwardIterator1 __last1, _ForwardIterator2 __first2, | ^~~~~~~~~ /usr/include/c++/14/pstl/glue_algorithm_defs.h:162:1: note: candidate expects 6 arguments, 4 provided a.cc:18:18: error: no matching function for call to 'transform(std::__cxx11::basic_string<char>::iterator, std::__cxx11::basic_string<char>::iterator, std::__cxx11::basic_string<char>::iterator, <unresolved overloaded function type>)' 18 | transform(b.begin(), b.end(), b.begin(), toupper); | ~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ /usr/include/c++/14/bits/stl_algo.h:4209:5: note: candidate: 'template<class _IIter, class _OIter, class _UnaryOperation> _OIter std::transform(_IIter, _IIter, _OIter, _UnaryOperation)' 4209 | transform(_InputIterator __first, _InputIterator __last, | ^~~~~~~~~ /usr/include/c++/14/bits/stl_algo.h:4209:5: note: template argument deduction/substitution failed: a.cc:18:18: note: couldn't deduce template parameter '_UnaryOperation' 18 | transform(b.begin(), b.end(), b.begin(), toupper); | ~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ /usr/include/c++/14/bits/stl_algo.h:4247:5: note: candidate: 'template<class _IIter1, class _IIter2, class _OIter, class _BinaryOperation> _OIter std::transform(_IIter1, _IIter1, _IIter2, _OIter, _BinaryOperation)' 4247 | transform(_InputIterator1 __first1, _InputIterator1 __last1, | ^~~~~~~~~ /usr/include/c++/14/bits/stl_algo.h:4247:5: note: candidate expects 5 arguments, 4 provided /usr/include/c++/14/pstl/glue_algorithm_defs.h:156:1: note: candidate: 'template<class _ExecutionPolicy, class _ForwardIterator1, class _ForwardIterator2, class _UnaryOperation> __pstl::__internal::__enable_if_execution_policy<_ExecutionPolicy, _ForwardIterator2> std::transform(_ExecutionPolicy&&, _ForwardIterator1, _ForwardIterator1, _ForwardIterator2, _UnaryOperation)' 156 | transform(_ExecutionPolicy&& __exec, _ForwardIterator1 __first, _ForwardIterator1 __last, _ForwardIterator2 __result, | ^~~~~~~~~ /usr/include/c++/14/pstl/glue_algorithm_defs.h:156:1: note: candidate expects 5 arguments, 4 provided /usr/include/c++/14/pstl/glue_algorithm_defs.h:162:1: note: candidate: 'template<class _ExecutionPolicy, class _ForwardIterator1, class _ForwardIterator2, class _ForwardIterator, class _BinaryOperation> __pstl::__internal::__enable_if_execution_policy<_ExecutionPolicy, _ForwardIterator2> std::transform(_ExecutionPolicy&&, _ForwardIterator1, _ForwardIterator1, _ForwardIterator2, _ForwardIterator, _BinaryOperation)' 162 | transform(_ExecutionPolicy&& __exec, _ForwardIterator1 __first1, _ForwardIterator1 __last1, _ForwardIterator2 __first2, | ^~~~~~~~~ /usr/include/c++/14/pstl/glue_algorithm_defs.h:162:1: note: candidate expects 6 arguments, 4 provided a.cc:19:18: error: no matching function for call to 'transform(std::__cxx11::basic_string<char>::iterator, std::__cxx11::basic_string<char>::iterator, std::__cxx11::basic_string<char>::iterator, <unresolved overloaded function type>)' 19 | transform(c.begin(), c.end(), c.begin(), toupper); | ~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ /usr/include/c++/14/bits/stl_algo.h:4209:5: note: candidate: 'template<class _IIter, class _OIter, class _UnaryOperation> _OIter std::transform(_IIter, _IIter, _OIter, _UnaryOperation)' 4209 | transform(_InputIterator __first, _InputIterator __last, | ^~~~~~~~~ /usr/include/c++/14/bits/stl_algo.h:4209:5: note: template argument deduction/substitution failed: a.cc:19:18: note: couldn't deduce template parameter '_UnaryOperation' 19 | transform(c.begin(), c.end(), c.begin(), toupper); | ~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ /usr/include/c++/14/bits/stl_algo.h:4247:5: note: candidate: 'template<class _IIter1, class _IIter2, class _OIter, class _BinaryOperation> _OIter std::transform(_IIter1, _IIter1, _IIter2, _OIter, _BinaryOperation)' 4247 | transform(_InputIterator1 __first1, _InputIterator1 __last1, | ^~~~~~~~~ /usr/include/c++/14/bits/stl_algo.h:4247:5: note: candidate expects 5 arguments, 4 provided /usr/include/c++/14/pstl/glue_algorithm_defs.h:156:1: note: candidate: 'template<class _ExecutionPolicy, class _ForwardIterator1, class _ForwardIterator2, class _UnaryOperation> __pstl::__internal::__enable_if_execution_policy<_ExecutionPolicy, _ForwardIterator2> std::transform(_ExecutionPolicy&&, _ForwardIterator1, _ForwardIterator1, _ForwardIterator2, _UnaryOperation)' 156 | transform(_ExecutionPolicy&& __exec, _ForwardIterator1 __first, _ForwardIterator1 __last, _ForwardIterator2 __result, | ^~~~~~~~~ /usr/include/c++/14/pstl/glue_algorithm_defs.h:156:1: note: candidate expects 5 arguments, 4 provided /usr/include/c++/14/pstl/glue_algorithm_defs.h:162:1: note: candidate: 'template<class _ExecutionPolicy, class _ForwardIterator1, class _ForwardIterator2, class _ForwardIterator, class _BinaryOperation> __pstl::__internal::__enable_if_execution_policy<_ExecutionPolicy, _ForwardIterator2> std::transform(_ExecutionPolicy&&, _ForwardIterator1, _ForwardIterator1, _ForwardIterator2, _ForwardIterator, _BinaryOperation)' 162 | transform(_ExecutionPolicy&& __exec, _ForwardIterator1 __first1, _ForwardIterator1 __last1, _ForwardIterator2 __first2, | ^~~~~~~~~ /usr/include/c++/14/pstl/glue_algorithm_defs.h:162:1: note: candidate expects 6 arguments, 4 provided
s635852626
p03737
C++
#include <iostream> #include <algorithm> #include <cctype> #include <string> #include <vector> using namespace std; int main() { string s[3]; string ans; cin>>s[0]>>s[1]>>s[2]; for(int i=0;i<3;i++) { ans+=s[i][0]; } transform(ans.begin(),ans.end(),ans.begin(),toupper); cout<<ans<<endl; return 0; }
a.cc: In function 'int main()': a.cc:18:18: error: no matching function for call to 'transform(std::__cxx11::basic_string<char>::iterator, std::__cxx11::basic_string<char>::iterator, std::__cxx11::basic_string<char>::iterator, <unresolved overloaded function type>)' 18 | transform(ans.begin(),ans.end(),ans.begin(),toupper); | ~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ In file included from /usr/include/c++/14/algorithm:61, from a.cc:2: /usr/include/c++/14/bits/stl_algo.h:4209:5: note: candidate: 'template<class _IIter, class _OIter, class _UnaryOperation> _OIter std::transform(_IIter, _IIter, _OIter, _UnaryOperation)' 4209 | transform(_InputIterator __first, _InputIterator __last, | ^~~~~~~~~ /usr/include/c++/14/bits/stl_algo.h:4209:5: note: template argument deduction/substitution failed: a.cc:18:18: note: couldn't deduce template parameter '_UnaryOperation' 18 | transform(ans.begin(),ans.end(),ans.begin(),toupper); | ~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ /usr/include/c++/14/bits/stl_algo.h:4247:5: note: candidate: 'template<class _IIter1, class _IIter2, class _OIter, class _BinaryOperation> _OIter std::transform(_IIter1, _IIter1, _IIter2, _OIter, _BinaryOperation)' 4247 | transform(_InputIterator1 __first1, _InputIterator1 __last1, | ^~~~~~~~~ /usr/include/c++/14/bits/stl_algo.h:4247:5: note: candidate expects 5 arguments, 4 provided In file included from /usr/include/c++/14/algorithm:86: /usr/include/c++/14/pstl/glue_algorithm_defs.h:156:1: note: candidate: 'template<class _ExecutionPolicy, class _ForwardIterator1, class _ForwardIterator2, class _UnaryOperation> __pstl::__internal::__enable_if_execution_policy<_ExecutionPolicy, _ForwardIterator2> std::transform(_ExecutionPolicy&&, _ForwardIterator1, _ForwardIterator1, _ForwardIterator2, _UnaryOperation)' 156 | transform(_ExecutionPolicy&& __exec, _ForwardIterator1 __first, _ForwardIterator1 __last, _ForwardIterator2 __result, | ^~~~~~~~~ /usr/include/c++/14/pstl/glue_algorithm_defs.h:156:1: note: candidate expects 5 arguments, 4 provided /usr/include/c++/14/pstl/glue_algorithm_defs.h:162:1: note: candidate: 'template<class _ExecutionPolicy, class _ForwardIterator1, class _ForwardIterator2, class _ForwardIterator, class _BinaryOperation> __pstl::__internal::__enable_if_execution_policy<_ExecutionPolicy, _ForwardIterator2> std::transform(_ExecutionPolicy&&, _ForwardIterator1, _ForwardIterator1, _ForwardIterator2, _ForwardIterator, _BinaryOperation)' 162 | transform(_ExecutionPolicy&& __exec, _ForwardIterator1 __first1, _ForwardIterator1 __last1, _ForwardIterator2 __first2, | ^~~~~~~~~ /usr/include/c++/14/pstl/glue_algorithm_defs.h:162:1: note: candidate expects 6 arguments, 4 provided
s310087134
p03737
C++
#include <iostream> #include <string> #include <vector> #include <cmath> #include <algorithm> using namespace std; typedef long long ll; #define INF 100000000 #define MOD 1000000007 int main() { const int N = 3; string s[N]; for (int i = 0; i < N; i++) { cin >> s[i]; } for (int i = 0; i < N; i++) { transform(s[i].begin(), s[i].end(), s[i].begin(), toupper); cout << s[i][0]; } cout << endl; return (0); }
a.cc: In function 'int main()': a.cc:22:26: error: no matching function for call to 'transform(std::__cxx11::basic_string<char>::iterator, std::__cxx11::basic_string<char>::iterator, std::__cxx11::basic_string<char>::iterator, <unresolved overloaded function type>)' 22 | transform(s[i].begin(), s[i].end(), s[i].begin(), toupper); | ~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ In file included from /usr/include/c++/14/algorithm:61, from a.cc:5: /usr/include/c++/14/bits/stl_algo.h:4209:5: note: candidate: 'template<class _IIter, class _OIter, class _UnaryOperation> _OIter std::transform(_IIter, _IIter, _OIter, _UnaryOperation)' 4209 | transform(_InputIterator __first, _InputIterator __last, | ^~~~~~~~~ /usr/include/c++/14/bits/stl_algo.h:4209:5: note: template argument deduction/substitution failed: a.cc:22:26: note: couldn't deduce template parameter '_UnaryOperation' 22 | transform(s[i].begin(), s[i].end(), s[i].begin(), toupper); | ~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ /usr/include/c++/14/bits/stl_algo.h:4247:5: note: candidate: 'template<class _IIter1, class _IIter2, class _OIter, class _BinaryOperation> _OIter std::transform(_IIter1, _IIter1, _IIter2, _OIter, _BinaryOperation)' 4247 | transform(_InputIterator1 __first1, _InputIterator1 __last1, | ^~~~~~~~~ /usr/include/c++/14/bits/stl_algo.h:4247:5: note: candidate expects 5 arguments, 4 provided In file included from /usr/include/c++/14/algorithm:86: /usr/include/c++/14/pstl/glue_algorithm_defs.h:156:1: note: candidate: 'template<class _ExecutionPolicy, class _ForwardIterator1, class _ForwardIterator2, class _UnaryOperation> __pstl::__internal::__enable_if_execution_policy<_ExecutionPolicy, _ForwardIterator2> std::transform(_ExecutionPolicy&&, _ForwardIterator1, _ForwardIterator1, _ForwardIterator2, _UnaryOperation)' 156 | transform(_ExecutionPolicy&& __exec, _ForwardIterator1 __first, _ForwardIterator1 __last, _ForwardIterator2 __result, | ^~~~~~~~~ /usr/include/c++/14/pstl/glue_algorithm_defs.h:156:1: note: candidate expects 5 arguments, 4 provided /usr/include/c++/14/pstl/glue_algorithm_defs.h:162:1: note: candidate: 'template<class _ExecutionPolicy, class _ForwardIterator1, class _ForwardIterator2, class _ForwardIterator, class _BinaryOperation> __pstl::__internal::__enable_if_execution_policy<_ExecutionPolicy, _ForwardIterator2> std::transform(_ExecutionPolicy&&, _ForwardIterator1, _ForwardIterator1, _ForwardIterator2, _ForwardIterator, _BinaryOperation)' 162 | transform(_ExecutionPolicy&& __exec, _ForwardIterator1 __first1, _ForwardIterator1 __last1, _ForwardIterator2 __first2, | ^~~~~~~~~ /usr/include/c++/14/pstl/glue_algorithm_defs.h:162:1: note: candidate expects 6 arguments, 4 provided
s120367056
p03737
Java
public class a{ public static void main(String[] args){ String firstSt = args[0].toUpperCase(); String secandSt = args[1].toUpperCase(); String thirdSt = args[2].toUpperCase(); char[] first = firstSt.toCharArray(); char[] secand = secandSt.toCharArray(); char[] third = thirdSt.toCharArray(); char[] answer = new char[3]; answer[0] = first[0]; answer[1] = secand[0]; answer[2] = third[0]; String ansSt = String.valueOf(answer); System.out.println(ansSt); } }
Main.java:1: error: class a is public, should be declared in a file named a.java public class a{ ^ 1 error
s212123983
p03737
C++
// #define _CRT_SECURE_NO_WARNINGS // #define _USE_MATH_DEFINES #include <iostream> #include <cstdio> #include <algorithm> #include <string> #include <vector> #include <map> #include <set> #include <stack> #include <cmath> #include <cstdlib> #include <functional> #include <locale> #include <cctype> #include <sstream> #include <iomanip> // 10桁出力 cout << setprecision(10) << double; #include <queue> using namespace std; typedef long long LL; typedef vector<int> VI; typedef vector<VI> VVI; typedef map<int, int> MAPII; typedef multimap<int, char, greater<int> > MuMAPIC; typedef vector<pair<int, int> > VPII; typedef multimap<int, string, greater<int> > MuMIS; typedef pair<int, int> P; typedef pair<int, pair<P, P> > PP; #define MP make_pair #define FAST_IO cin.tie(0); ios::sync_with_stdio(false); #define FOR(i,a,b) for(int i=(a);i<(b);i++) //for gcc (未test) // #define FOREACH_IT(it,c) for(typeof(c)::iterator it=(c).begin(); it!=(c).end(); ++it) //for Visual Studio #define foreach_it(type,it,c) for(type::iterator it=c.begin(),c_end=c.end();it!=c_end;++it) // for Debug. #define DUMP_VVI(b) FOR(i,0,b.size()){FOR(j,0,b[i].size())printf("%d ",b[i][j]);puts("");} #define D_OUT(str,value) if(dbgF){cout<<str<<" : "<<value<<endl;} // 入力をpush_back(d)やarray[d]に使う時に1行で書ける // int INPUT_INT() {int d;cin>>d;return d;} template<class T>T IN() { T d; cin >> d; return d; } // 最大公約数(Greatest Common Divisor) LL gcd(LL a, LL b) { return (b > 0) ? gcd(b, a%b) : a; } // 最小公倍数(Least Common Multiple) LL lcm(LL a, LL b) { return a / gcd(a, b) * b; } // Y年はうるう年か否か bool uruu(LL Y) { return (((Y % 4 == 0 && Y % 100 != 0) || Y % 400 == 0) ? true : false); } int dx[4] = { 0,1,0,-1 }; int dy[4] = { 1,0,-1,0 }; // vector注意 // vec[i][j]の形に入力を入れるとき、vecは初期化してある必要がある. // ------------------- include, typedef, define END. ------------------- int main() { FAST_IO; // for D_OUT(str, value) ... cout<< str <<" : "<< value <<endl; bool dbgF = true; //コードはここから書く. string a, b, c; cin >> a >> b >> c; transform(a.begin(), a.end(), a.begin(), toupper); transform(b.begin(), b.end(), b.begin(), toupper); transform(c.begin(), c.end(), c.begin(), toupper); cout << a[0] << b[0] << c[0] << endl; return 0; }
a.cc: In function 'int main()': a.cc:67:18: error: no matching function for call to 'transform(std::__cxx11::basic_string<char>::iterator, std::__cxx11::basic_string<char>::iterator, std::__cxx11::basic_string<char>::iterator, <unresolved overloaded function type>)' 67 | transform(a.begin(), a.end(), a.begin(), toupper); | ~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ In file included from /usr/include/c++/14/algorithm:61, from a.cc:5: /usr/include/c++/14/bits/stl_algo.h:4209:5: note: candidate: 'template<class _IIter, class _OIter, class _UnaryOperation> _OIter std::transform(_IIter, _IIter, _OIter, _UnaryOperation)' 4209 | transform(_InputIterator __first, _InputIterator __last, | ^~~~~~~~~ /usr/include/c++/14/bits/stl_algo.h:4209:5: note: template argument deduction/substitution failed: a.cc:67:18: note: couldn't deduce template parameter '_UnaryOperation' 67 | transform(a.begin(), a.end(), a.begin(), toupper); | ~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ /usr/include/c++/14/bits/stl_algo.h:4247:5: note: candidate: 'template<class _IIter1, class _IIter2, class _OIter, class _BinaryOperation> _OIter std::transform(_IIter1, _IIter1, _IIter2, _OIter, _BinaryOperation)' 4247 | transform(_InputIterator1 __first1, _InputIterator1 __last1, | ^~~~~~~~~ /usr/include/c++/14/bits/stl_algo.h:4247:5: note: candidate expects 5 arguments, 4 provided In file included from /usr/include/c++/14/algorithm:86: /usr/include/c++/14/pstl/glue_algorithm_defs.h:156:1: note: candidate: 'template<class _ExecutionPolicy, class _ForwardIterator1, class _ForwardIterator2, class _UnaryOperation> __pstl::__internal::__enable_if_execution_policy<_ExecutionPolicy, _ForwardIterator2> std::transform(_ExecutionPolicy&&, _ForwardIterator1, _ForwardIterator1, _ForwardIterator2, _UnaryOperation)' 156 | transform(_ExecutionPolicy&& __exec, _ForwardIterator1 __first, _ForwardIterator1 __last, _ForwardIterator2 __result, | ^~~~~~~~~ /usr/include/c++/14/pstl/glue_algorithm_defs.h:156:1: note: candidate expects 5 arguments, 4 provided /usr/include/c++/14/pstl/glue_algorithm_defs.h:162:1: note: candidate: 'template<class _ExecutionPolicy, class _ForwardIterator1, class _ForwardIterator2, class _ForwardIterator, class _BinaryOperation> __pstl::__internal::__enable_if_execution_policy<_ExecutionPolicy, _ForwardIterator2> std::transform(_ExecutionPolicy&&, _ForwardIterator1, _ForwardIterator1, _ForwardIterator2, _ForwardIterator, _BinaryOperation)' 162 | transform(_ExecutionPolicy&& __exec, _ForwardIterator1 __first1, _ForwardIterator1 __last1, _ForwardIterator2 __first2, | ^~~~~~~~~ /usr/include/c++/14/pstl/glue_algorithm_defs.h:162:1: note: candidate expects 6 arguments, 4 provided a.cc:68:18: error: no matching function for call to 'transform(std::__cxx11::basic_string<char>::iterator, std::__cxx11::basic_string<char>::iterator, std::__cxx11::basic_string<char>::iterator, <unresolved overloaded function type>)' 68 | transform(b.begin(), b.end(), b.begin(), toupper); | ~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ /usr/include/c++/14/bits/stl_algo.h:4209:5: note: candidate: 'template<class _IIter, class _OIter, class _UnaryOperation> _OIter std::transform(_IIter, _IIter, _OIter, _UnaryOperation)' 4209 | transform(_InputIterator __first, _InputIterator __last, | ^~~~~~~~~ /usr/include/c++/14/bits/stl_algo.h:4209:5: note: template argument deduction/substitution failed: a.cc:68:18: note: couldn't deduce template parameter '_UnaryOperation' 68 | transform(b.begin(), b.end(), b.begin(), toupper); | ~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ /usr/include/c++/14/bits/stl_algo.h:4247:5: note: candidate: 'template<class _IIter1, class _IIter2, class _OIter, class _BinaryOperation> _OIter std::transform(_IIter1, _IIter1, _IIter2, _OIter, _BinaryOperation)' 4247 | transform(_InputIterator1 __first1, _InputIterator1 __last1, | ^~~~~~~~~ /usr/include/c++/14/bits/stl_algo.h:4247:5: note: candidate expects 5 arguments, 4 provided /usr/include/c++/14/pstl/glue_algorithm_defs.h:156:1: note: candidate: 'template<class _ExecutionPolicy, class _ForwardIterator1, class _ForwardIterator2, class _UnaryOperation> __pstl::__internal::__enable_if_execution_policy<_ExecutionPolicy, _ForwardIterator2> std::transform(_ExecutionPolicy&&, _ForwardIterator1, _ForwardIterator1, _ForwardIterator2, _UnaryOperation)' 156 | transform(_ExecutionPolicy&& __exec, _ForwardIterator1 __first, _ForwardIterator1 __last, _ForwardIterator2 __result, | ^~~~~~~~~ /usr/include/c++/14/pstl/glue_algorithm_defs.h:156:1: note: candidate expects 5 arguments, 4 provided /usr/include/c++/14/pstl/glue_algorithm_defs.h:162:1: note: candidate: 'template<class _ExecutionPolicy, class _ForwardIterator1, class _ForwardIterator2, class _ForwardIterator, class _BinaryOperation> __pstl::__internal::__enable_if_execution_policy<_ExecutionPolicy, _ForwardIterator2> std::transform(_ExecutionPolicy&&, _ForwardIterator1, _ForwardIterator1, _ForwardIterator2, _ForwardIterator, _BinaryOperation)' 162 | transform(_ExecutionPolicy&& __exec, _ForwardIterator1 __first1, _ForwardIterator1 __last1, _ForwardIterator2 __first2, | ^~~~~~~~~ /usr/include/c++/14/pstl/glue_algorithm_defs.h:162:1: note: candidate expects 6 arguments, 4 provided a.cc:69:18: error: no matching function for call to 'transform(std::__cxx11::basic_string<char>::iterator, std::__cxx11::basic_string<char>::iterator, std::__cxx11::basic_string<char>::iterator, <unresolved overloaded function type>)' 69 | transform(c.begin(), c.end(), c.begin(), toupper); | ~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ /usr/include/c++/14/bits/stl_algo.h:4209:5: note: candidate: 'template<class _IIter, class _OIter, class _UnaryOperation> _OIter std::transform(_IIter, _IIter, _OIter, _UnaryOperation)' 4209 | transform(_InputIterator __first, _InputIterator __last, | ^~~~~~~~~ /usr/include/c++/14/bits/stl_algo.h:4209:5: note: template argument deduction/substitution failed: a.cc:69:18: note: couldn't deduce template parameter '_UnaryOperation' 69 | transform(c.begin(), c.end(), c.begin(), toupper); | ~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ /usr/include/c++/14/bits/stl_algo.h:4247:5: note: candidate: 'template<class _IIter1, class _IIter2, class _OIter, class _BinaryOperation> _OIter std::transform(_IIter1, _IIter1, _IIter2, _OIter, _BinaryOperation)' 4247 | transform(_InputIterator1 __first1, _InputIterator1 __last1, | ^~~~~~~~~ /usr/include/c++/14/bits/stl_algo.h:4247:5: note: candidate expects 5 arguments, 4 provided /usr/include/c++/14/pstl/glue_algorithm_defs.h:156:1: note: candidate: 'template<class _ExecutionPolicy, class _ForwardIterator1, class _ForwardIterator2, class _UnaryOperation> __pstl::__internal::__enable_if_execution_policy<_ExecutionPolicy, _ForwardIterator2> std::transform(_ExecutionPolicy&&, _ForwardIterator1, _ForwardIterator1, _ForwardIterator2, _UnaryOperation)' 156 | transform(_ExecutionPolicy&& __exec, _ForwardIterator1 __first, _ForwardIterator1 __last, _ForwardIterator2 __result, | ^~~~~~~~~ /usr/include/c++/14/pstl/glue_algorithm_defs.h:156:1: note: candidate expects 5 arguments, 4 provided /usr/include/c++/14/pstl/glue_algorithm_defs.h:162:1: note: candidate: 'template<class _ExecutionPolicy, class _ForwardIterator1, class _ForwardIterator2, class _ForwardIterator, class _BinaryOperation> __pstl::__internal::__enable_if_execution_policy<_ExecutionPolicy, _ForwardIterator2> std::transform(_ExecutionPolicy&&, _ForwardIterator1, _ForwardIterator1, _ForwardIterator2, _ForwardIterator, _BinaryOperation)' 162 | transform(_ExecutionPolicy&& __exec, _ForwardIterator1 __first1, _ForwardIterator1 __last1, _ForwardIterator2 __first2, | ^~~~~~~~~ /usr/include/c++/14/pstl/glue_algorithm_defs.h:162:1: note: candidate expects 6 arguments, 4 provided
s604381726
p03737
C++
#include<iostream> #include<algorithm> #include<math.h> #include<vector> #include<string> #include <cstdlib> using namespace std; int main(){ string a, b, c; cin >> a >> b >> c; transform(a.cbegin(), a.cend(), a.begin(), toupper); transform(b.cbegin(), b.cend(), b.begin(), toupper); transform(c.cbegin(), c.cend(), c.begin(), toupper); cout << a[0] << b[0] << c[0] << endl; return 0; }
a.cc: In function 'int main()': a.cc:11:18: error: no matching function for call to 'transform(std::__cxx11::basic_string<char>::const_iterator, std::__cxx11::basic_string<char>::const_iterator, std::__cxx11::basic_string<char>::iterator, <unresolved overloaded function type>)' 11 | transform(a.cbegin(), a.cend(), a.begin(), toupper); | ~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ In file included from /usr/include/c++/14/algorithm:61, from a.cc:2: /usr/include/c++/14/bits/stl_algo.h:4209:5: note: candidate: 'template<class _IIter, class _OIter, class _UnaryOperation> _OIter std::transform(_IIter, _IIter, _OIter, _UnaryOperation)' 4209 | transform(_InputIterator __first, _InputIterator __last, | ^~~~~~~~~ /usr/include/c++/14/bits/stl_algo.h:4209:5: note: template argument deduction/substitution failed: a.cc:11:18: note: couldn't deduce template parameter '_UnaryOperation' 11 | transform(a.cbegin(), a.cend(), a.begin(), toupper); | ~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ /usr/include/c++/14/bits/stl_algo.h:4247:5: note: candidate: 'template<class _IIter1, class _IIter2, class _OIter, class _BinaryOperation> _OIter std::transform(_IIter1, _IIter1, _IIter2, _OIter, _BinaryOperation)' 4247 | transform(_InputIterator1 __first1, _InputIterator1 __last1, | ^~~~~~~~~ /usr/include/c++/14/bits/stl_algo.h:4247:5: note: candidate expects 5 arguments, 4 provided In file included from /usr/include/c++/14/algorithm:86: /usr/include/c++/14/pstl/glue_algorithm_defs.h:156:1: note: candidate: 'template<class _ExecutionPolicy, class _ForwardIterator1, class _ForwardIterator2, class _UnaryOperation> __pstl::__internal::__enable_if_execution_policy<_ExecutionPolicy, _ForwardIterator2> std::transform(_ExecutionPolicy&&, _ForwardIterator1, _ForwardIterator1, _ForwardIterator2, _UnaryOperation)' 156 | transform(_ExecutionPolicy&& __exec, _ForwardIterator1 __first, _ForwardIterator1 __last, _ForwardIterator2 __result, | ^~~~~~~~~ /usr/include/c++/14/pstl/glue_algorithm_defs.h:156:1: note: candidate expects 5 arguments, 4 provided /usr/include/c++/14/pstl/glue_algorithm_defs.h:162:1: note: candidate: 'template<class _ExecutionPolicy, class _ForwardIterator1, class _ForwardIterator2, class _ForwardIterator, class _BinaryOperation> __pstl::__internal::__enable_if_execution_policy<_ExecutionPolicy, _ForwardIterator2> std::transform(_ExecutionPolicy&&, _ForwardIterator1, _ForwardIterator1, _ForwardIterator2, _ForwardIterator, _BinaryOperation)' 162 | transform(_ExecutionPolicy&& __exec, _ForwardIterator1 __first1, _ForwardIterator1 __last1, _ForwardIterator2 __first2, | ^~~~~~~~~ /usr/include/c++/14/pstl/glue_algorithm_defs.h:162:1: note: candidate expects 6 arguments, 4 provided a.cc:12:18: error: no matching function for call to 'transform(std::__cxx11::basic_string<char>::const_iterator, std::__cxx11::basic_string<char>::const_iterator, std::__cxx11::basic_string<char>::iterator, <unresolved overloaded function type>)' 12 | transform(b.cbegin(), b.cend(), b.begin(), toupper); | ~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ /usr/include/c++/14/bits/stl_algo.h:4209:5: note: candidate: 'template<class _IIter, class _OIter, class _UnaryOperation> _OIter std::transform(_IIter, _IIter, _OIter, _UnaryOperation)' 4209 | transform(_InputIterator __first, _InputIterator __last, | ^~~~~~~~~ /usr/include/c++/14/bits/stl_algo.h:4209:5: note: template argument deduction/substitution failed: a.cc:12:18: note: couldn't deduce template parameter '_UnaryOperation' 12 | transform(b.cbegin(), b.cend(), b.begin(), toupper); | ~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ /usr/include/c++/14/bits/stl_algo.h:4247:5: note: candidate: 'template<class _IIter1, class _IIter2, class _OIter, class _BinaryOperation> _OIter std::transform(_IIter1, _IIter1, _IIter2, _OIter, _BinaryOperation)' 4247 | transform(_InputIterator1 __first1, _InputIterator1 __last1, | ^~~~~~~~~ /usr/include/c++/14/bits/stl_algo.h:4247:5: note: candidate expects 5 arguments, 4 provided /usr/include/c++/14/pstl/glue_algorithm_defs.h:156:1: note: candidate: 'template<class _ExecutionPolicy, class _ForwardIterator1, class _ForwardIterator2, class _UnaryOperation> __pstl::__internal::__enable_if_execution_policy<_ExecutionPolicy, _ForwardIterator2> std::transform(_ExecutionPolicy&&, _ForwardIterator1, _ForwardIterator1, _ForwardIterator2, _UnaryOperation)' 156 | transform(_ExecutionPolicy&& __exec, _ForwardIterator1 __first, _ForwardIterator1 __last, _ForwardIterator2 __result, | ^~~~~~~~~ /usr/include/c++/14/pstl/glue_algorithm_defs.h:156:1: note: candidate expects 5 arguments, 4 provided /usr/include/c++/14/pstl/glue_algorithm_defs.h:162:1: note: candidate: 'template<class _ExecutionPolicy, class _ForwardIterator1, class _ForwardIterator2, class _ForwardIterator, class _BinaryOperation> __pstl::__internal::__enable_if_execution_policy<_ExecutionPolicy, _ForwardIterator2> std::transform(_ExecutionPolicy&&, _ForwardIterator1, _ForwardIterator1, _ForwardIterator2, _ForwardIterator, _BinaryOperation)' 162 | transform(_ExecutionPolicy&& __exec, _ForwardIterator1 __first1, _ForwardIterator1 __last1, _ForwardIterator2 __first2, | ^~~~~~~~~ /usr/include/c++/14/pstl/glue_algorithm_defs.h:162:1: note: candidate expects 6 arguments, 4 provided a.cc:13:18: error: no matching function for call to 'transform(std::__cxx11::basic_string<char>::const_iterator, std::__cxx11::basic_string<char>::const_iterator, std::__cxx11::basic_string<char>::iterator, <unresolved overloaded function type>)' 13 | transform(c.cbegin(), c.cend(), c.begin(), toupper); | ~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ /usr/include/c++/14/bits/stl_algo.h:4209:5: note: candidate: 'template<class _IIter, class _OIter, class _UnaryOperation> _OIter std::transform(_IIter, _IIter, _OIter, _UnaryOperation)' 4209 | transform(_InputIterator __first, _InputIterator __last, | ^~~~~~~~~ /usr/include/c++/14/bits/stl_algo.h:4209:5: note: template argument deduction/substitution failed: a.cc:13:18: note: couldn't deduce template parameter '_UnaryOperation' 13 | transform(c.cbegin(), c.cend(), c.begin(), toupper); | ~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ /usr/include/c++/14/bits/stl_algo.h:4247:5: note: candidate: 'template<class _IIter1, class _IIter2, class _OIter, class _BinaryOperation> _OIter std::transform(_IIter1, _IIter1, _IIter2, _OIter, _BinaryOperation)' 4247 | transform(_InputIterator1 __first1, _InputIterator1 __last1, | ^~~~~~~~~ /usr/include/c++/14/bits/stl_algo.h:4247:5: note: candidate expects 5 arguments, 4 provided /usr/include/c++/14/pstl/glue_algorithm_defs.h:156:1: note: candidate: 'template<class _ExecutionPolicy, class _ForwardIterator1, class _ForwardIterator2, class _UnaryOperation> __pstl::__internal::__enable_if_execution_policy<_ExecutionPolicy, _ForwardIterator2> std::transform(_ExecutionPolicy&&, _ForwardIterator1, _ForwardIterator1, _ForwardIterator2, _UnaryOperation)' 156 | transform(_ExecutionPolicy&& __exec, _ForwardIterator1 __first, _ForwardIterator1 __last, _ForwardIterator2 __result, | ^~~~~~~~~ /usr/include/c++/14/pstl/glue_algorithm_defs.h:156:1: note: candidate expects 5 arguments, 4 provided /usr/include/c++/14/pstl/glue_algorithm_defs.h:162:1: note: candidate: 'template<class _ExecutionPolicy, class _ForwardIterator1, class _ForwardIterator2, class _ForwardIterator, class _BinaryOperation> __pstl::__internal::__enable_if_execution_policy<_ExecutionPolicy, _ForwardIterator2> std::transform(_ExecutionPolicy&&, _ForwardIterator1, _ForwardIterator1, _ForwardIterator2, _ForwardIterator, _BinaryOperation)' 162 | transform(_ExecutionPolicy&& __exec, _ForwardIterator1 __first1, _ForwardIterator1 __last1, _ForwardIterator2 __first2, | ^~~~~~~~~ /usr/include/c++/14/pstl/glue_algorithm_defs.h:162:1: note: candidate expects 6 arguments, 4 provided
s013232405
p03737
C++
#include<stdio.h> int main(void){ char s[3][10]; int i; for(i=0;i<3;i++){ gets(s[i]); } for(i=0;i<3;i++){ putchar((char)((s[i][0]-'a')+'A')); } gets(""); return 0; }
a.cc: In function 'int main()': a.cc:6:17: error: 'gets' was not declared in this scope; did you mean 'getw'? 6 | gets(s[i]); | ^~~~ | getw a.cc:11:9: error: 'gets' was not declared in this scope; did you mean 'getw'? 11 | gets(""); | ^~~~ | getw
s592391357
p03737
C++
#define _USE_MATH_DEFINES #include <iostream> #include <iomanip> #include <cctype> #include <cstdlib> #include <algorithm> #include <functional> #include <vector> #include <cstdio> #include <cstring> #include <cmath> #include <cfloat> #include <map> #include <queue> #include <stack> #include <list> #include <string> #include <set> #include <complex> #include <utility> #include <numeric> #define rep(i,n) for(int i=0;i<(n);i++) #define REP(i,a,n) for(int i=a;i<(n);i++) #define rrep(i,n) for(int i=(n)-1;i>=0;i--) #define VI vector<int> #define VS vector<string> #define all(a) (a).begin(),(a).end() #define debug(x) cout<<#x<<": "<<x<<endl using namespace std; typedef long long ll; typedef string::const_iterator State; typedef pair<int,int> P; class ParseError {}; const int INF=1e9; char fi[101][101]; int day[12]={31,28,31,30,31,30,31,31,30,31,30,31}; double EPS = 1e-10; int N,M; int sx,sy; int gx,gy; int w,h; int ans; const int MAX_V=100; const int MAX_N=100; char o[3]={'+','-','*'}; #define md 1000003 int bow[353][353]={0}; double add(double a,double b){ if(abs(a+b)<EPS*(abs(a)+abs(b))) return 0; return a+b; } /*struct P{ double x,y; P(){} P(double x,double y):x(x),y(y){ } P operator + (P p){ return P(add(x,p.x),add(y,p.y)); } P operator - (P p){ return P(add(x,-p.x),add(y,-p.y)); } P operator *(double d){ return P(x*d,y*d); } double dot(P p){ return add(x*p.x,y*p.y); } double det(P p){ return add(x*p.y,-y*p.x); } }; bool cmp_x(const P& p,const P& q){ if(p.x!=q.x) return p.x<q.x; return p.y<q.y; } vector<P> convex_hull(P* ps, int n){ sort(ps,ps+n,cmp_x); int k=0; vector<P> qs(n*2); rep(i,n){ while(k>1&&(qs[k-1]-qs[k-2]).det(ps[i]-qs[k-1])<=0) k--; qs[k++]=ps[i]; } for(int i=n-2,t=k;i>=0;i--){ while(k>t&&(qs[k-1]-qs[k-2]).det(ps[i]-qs[k-1])<=0) k--; qs[k++]=ps[i]; } qs.resize(k-1); return qs; } int n,m; vector<double> p; P ps[101]; */ char c[520][520]; long long mod=1000000007; long long pow(ll i,ll j){ ll tmp=1; while(j){ if(j%2) tmp=tmp*i%mod; i=i*i%mod; j/=2; } return tmp; } int expression(State&); int term(State&); int factor(State&); int number(State&); int expression(State &begin){ int ret = term(begin); for(;;){ if(*begin == '+'){ begin++; ret += term(begin); } else if(*begin == '-'){ begin++; ret -= term(begin); } else break; } return ret; } int term(State &begin){ int ret = factor(begin); for(;;){ if(*begin=='*'){ begin++; ret *= factor(begin); } else if(*begin=='/'){ begin++; ret /= factor(begin); } else break; } return ret; } int factor(State &begin){ int ret; if(*begin == '('){ begin++; ret = expression(begin); begin++; } else ret = number(begin); return ret; } int number(State &begin){ int ret =0; while(isdigit(*begin)){ ret*=10; ret+=*begin - '0'; begin++; } return ret; } int henkan(string s){ map<char, int> moji; moji['m']=1000; moji['c']=100; moji['x']=10; moji['i']=1; int value=0; int temp=1; for(int i=0;i<s.size();i++){ if(s[i]>='2'&&s[i]<='9') temp=temp*(s[i]-'0'); else{ value+=temp*moji[s[i]]; temp=1; } } return value; } int main(){ string s1,s2,s3; cin>>s1>>s2>>s3; transform(s1.begin(),s1.end(),s1.begin(),toupper); transform(s2.begin(),s2.end(),s2.begin(),toupper); transform(s3.begin(),s3.end(),s3.begin(),toupper); cout<<s1[0]<<s2[0]<<s3[0]<<endl; }
a.cc: In function 'int main()': a.cc:216:18: error: no matching function for call to 'transform(std::__cxx11::basic_string<char>::iterator, std::__cxx11::basic_string<char>::iterator, std::__cxx11::basic_string<char>::iterator, <unresolved overloaded function type>)' 216 | transform(s1.begin(),s1.end(),s1.begin(),toupper); | ~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ In file included from /usr/include/c++/14/algorithm:61, from a.cc:6: /usr/include/c++/14/bits/stl_algo.h:4209:5: note: candidate: 'template<class _IIter, class _OIter, class _UnaryOperation> _OIter std::transform(_IIter, _IIter, _OIter, _UnaryOperation)' 4209 | transform(_InputIterator __first, _InputIterator __last, | ^~~~~~~~~ /usr/include/c++/14/bits/stl_algo.h:4209:5: note: template argument deduction/substitution failed: a.cc:216:18: note: couldn't deduce template parameter '_UnaryOperation' 216 | transform(s1.begin(),s1.end(),s1.begin(),toupper); | ~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ /usr/include/c++/14/bits/stl_algo.h:4247:5: note: candidate: 'template<class _IIter1, class _IIter2, class _OIter, class _BinaryOperation> _OIter std::transform(_IIter1, _IIter1, _IIter2, _OIter, _BinaryOperation)' 4247 | transform(_InputIterator1 __first1, _InputIterator1 __last1, | ^~~~~~~~~ /usr/include/c++/14/bits/stl_algo.h:4247:5: note: candidate expects 5 arguments, 4 provided In file included from /usr/include/c++/14/algorithm:86: /usr/include/c++/14/pstl/glue_algorithm_defs.h:156:1: note: candidate: 'template<class _ExecutionPolicy, class _ForwardIterator1, class _ForwardIterator2, class _UnaryOperation> __pstl::__internal::__enable_if_execution_policy<_ExecutionPolicy, _ForwardIterator2> std::transform(_ExecutionPolicy&&, _ForwardIterator1, _ForwardIterator1, _ForwardIterator2, _UnaryOperation)' 156 | transform(_ExecutionPolicy&& __exec, _ForwardIterator1 __first, _ForwardIterator1 __last, _ForwardIterator2 __result, | ^~~~~~~~~ /usr/include/c++/14/pstl/glue_algorithm_defs.h:156:1: note: candidate expects 5 arguments, 4 provided /usr/include/c++/14/pstl/glue_algorithm_defs.h:162:1: note: candidate: 'template<class _ExecutionPolicy, class _ForwardIterator1, class _ForwardIterator2, class _ForwardIterator, class _BinaryOperation> __pstl::__internal::__enable_if_execution_policy<_ExecutionPolicy, _ForwardIterator2> std::transform(_ExecutionPolicy&&, _ForwardIterator1, _ForwardIterator1, _ForwardIterator2, _ForwardIterator, _BinaryOperation)' 162 | transform(_ExecutionPolicy&& __exec, _ForwardIterator1 __first1, _ForwardIterator1 __last1, _ForwardIterator2 __first2, | ^~~~~~~~~ /usr/include/c++/14/pstl/glue_algorithm_defs.h:162:1: note: candidate expects 6 arguments, 4 provided a.cc:217:18: error: no matching function for call to 'transform(std::__cxx11::basic_string<char>::iterator, std::__cxx11::basic_string<char>::iterator, std::__cxx11::basic_string<char>::iterator, <unresolved overloaded function type>)' 217 | transform(s2.begin(),s2.end(),s2.begin(),toupper); | ~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ /usr/include/c++/14/bits/stl_algo.h:4209:5: note: candidate: 'template<class _IIter, class _OIter, class _UnaryOperation> _OIter std::transform(_IIter, _IIter, _OIter, _UnaryOperation)' 4209 | transform(_InputIterator __first, _InputIterator __last, | ^~~~~~~~~ /usr/include/c++/14/bits/stl_algo.h:4209:5: note: template argument deduction/substitution failed: a.cc:217:18: note: couldn't deduce template parameter '_UnaryOperation' 217 | transform(s2.begin(),s2.end(),s2.begin(),toupper); | ~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ /usr/include/c++/14/bits/stl_algo.h:4247:5: note: candidate: 'template<class _IIter1, class _IIter2, class _OIter, class _BinaryOperation> _OIter std::transform(_IIter1, _IIter1, _IIter2, _OIter, _BinaryOperation)' 4247 | transform(_InputIterator1 __first1, _InputIterator1 __last1, | ^~~~~~~~~ /usr/include/c++/14/bits/stl_algo.h:4247:5: note: candidate expects 5 arguments, 4 provided /usr/include/c++/14/pstl/glue_algorithm_defs.h:156:1: note: candidate: 'template<class _ExecutionPolicy, class _ForwardIterator1, class _ForwardIterator2, class _UnaryOperation> __pstl::__internal::__enable_if_execution_policy<_ExecutionPolicy, _ForwardIterator2> std::transform(_ExecutionPolicy&&, _ForwardIterator1, _ForwardIterator1, _ForwardIterator2, _UnaryOperation)' 156 | transform(_ExecutionPolicy&& __exec, _ForwardIterator1 __first, _ForwardIterator1 __last, _ForwardIterator2 __result, | ^~~~~~~~~ /usr/include/c++/14/pstl/glue_algorithm_defs.h:156:1: note: candidate expects 5 arguments, 4 provided /usr/include/c++/14/pstl/glue_algorithm_defs.h:162:1: note: candidate: 'template<class _ExecutionPolicy, class _ForwardIterator1, class _ForwardIterator2, class _ForwardIterator, class _BinaryOperation> __pstl::__internal::__enable_if_execution_policy<_ExecutionPolicy, _ForwardIterator2> std::transform(_ExecutionPolicy&&, _ForwardIterator1, _ForwardIterator1, _ForwardIterator2, _ForwardIterator, _BinaryOperation)' 162 | transform(_ExecutionPolicy&& __exec, _ForwardIterator1 __first1, _ForwardIterator1 __last1, _ForwardIterator2 __first2, | ^~~~~~~~~ /usr/include/c++/14/pstl/glue_algorithm_defs.h:162:1: note: candidate expects 6 arguments, 4 provided a.cc:218:18: error: no matching function for call to 'transform(std::__cxx11::basic_string<char>::iterator, std::__cxx11::basic_string<char>::iterator, std::__cxx11::basic_string<char>::iterator, <unresolved overloaded function type>)' 218 | transform(s3.begin(),s3.end(),s3.begin(),toupper); | ~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ /usr/include/c++/14/bits/stl_algo.h:4209:5: note: candidate: 'template<class _IIter, class _OIter, class _UnaryOperation> _OIter std::transform(_IIter, _IIter, _OIter, _UnaryOperation)' 4209 | transform(_InputIterator __first, _InputIterator __last, | ^~~~~~~~~ /usr/include/c++/14/bits/stl_algo.h:4209:5: note: template argument deduction/substitution failed: a.cc:218:18: note: couldn't deduce template parameter '_UnaryOperation' 218 | transform(s3.begin(),s3.end(),s3.begin(),toupper); | ~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ /usr/include/c++/14/bits/stl_algo.h:4247:5: note: candidate: 'template<class _IIter1, class _IIter2, class _OIter, class _BinaryOperation> _OIter std::transform(_IIter1, _IIter1, _IIter2, _OIter, _BinaryOperation)' 4247 | transform(_InputIterator1 __first1, _InputIterator1 __last1, | ^~~~~~~~~ /usr/include/c++/14/bits/stl_algo.h:4247:5: note: candidate expects 5 arguments, 4 provided /usr/include/c++/14/pstl/glue_algorithm_defs.h:156:1: note: candidate: 'template<class _ExecutionPolicy, class _ForwardIterator1, class _ForwardIterator2, class _UnaryOperation> __pstl::__internal::__enable_if_execution_policy<_ExecutionPolicy, _ForwardIterator2> std::transform(_ExecutionPolicy&&, _ForwardIterator1, _ForwardIterator1, _ForwardIterator2, _UnaryOperation)' 156 | transform(_ExecutionPolicy&& __exec, _ForwardIterator1 __first, _ForwardIterator1 __last, _ForwardIterator2 __result, | ^~~~~~~~~ /usr/include/c++/14/pstl/glue_algorithm_defs.h:156:1: note: candidate expects 5 arguments, 4 provided /usr/include/c++/14/pstl/glue_algorithm_defs.h:162:1: note: candidate: 'template<class _ExecutionPolicy, class _ForwardIterator1, class _ForwardIterator2, class _ForwardIterator, class _BinaryOperation> __pstl::__internal::__enable_if_execution_policy<_ExecutionPolicy, _ForwardIterator2> std::transform(_ExecutionPolicy&&, _ForwardIterator1, _ForwardIterator1, _ForwardIterator2, _ForwardIterator, _BinaryOperation)' 162 | transform(_ExecutionPolicy&& __exec, _ForwardIterator1 __first1, _ForwardIterator1 __last1, _ForwardIterator2 __first2, | ^~~~~~~~~ /usr/include/c++/14/pstl/glue_algorithm_defs.h:162:1: note: candidate expects 6 arguments, 4 provided
s056587179
p03737
C++
#define _USE_MATH_DEFINES // for C++ #include <cmath> #include <iostream> #include <iomanip> #include <string> #include <vector> #include <algorithm> #include <array> #include <iterator> #include <utility> #include <set> #include <random> #include <map> #include <stack> #include <queue> #include <list> #include <functional> #define LL long long using namespace std; int main() { string a, b, c, s; cin >> a >> b >> c; s = { a[0],b[0],c[0] }; transform(s.begin(), s.end(), s.begin(), toupper); cout << s << endl; return 0; }
a.cc: In function 'int main()': a.cc:27:18: error: no matching function for call to 'transform(std::__cxx11::basic_string<char>::iterator, std::__cxx11::basic_string<char>::iterator, std::__cxx11::basic_string<char>::iterator, <unresolved overloaded function type>)' 27 | transform(s.begin(), s.end(), s.begin(), toupper); | ~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ In file included from /usr/include/c++/14/algorithm:61, from a.cc:7: /usr/include/c++/14/bits/stl_algo.h:4209:5: note: candidate: 'template<class _IIter, class _OIter, class _UnaryOperation> _OIter std::transform(_IIter, _IIter, _OIter, _UnaryOperation)' 4209 | transform(_InputIterator __first, _InputIterator __last, | ^~~~~~~~~ /usr/include/c++/14/bits/stl_algo.h:4209:5: note: template argument deduction/substitution failed: a.cc:27:18: note: couldn't deduce template parameter '_UnaryOperation' 27 | transform(s.begin(), s.end(), s.begin(), toupper); | ~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ /usr/include/c++/14/bits/stl_algo.h:4247:5: note: candidate: 'template<class _IIter1, class _IIter2, class _OIter, class _BinaryOperation> _OIter std::transform(_IIter1, _IIter1, _IIter2, _OIter, _BinaryOperation)' 4247 | transform(_InputIterator1 __first1, _InputIterator1 __last1, | ^~~~~~~~~ /usr/include/c++/14/bits/stl_algo.h:4247:5: note: candidate expects 5 arguments, 4 provided In file included from /usr/include/c++/14/algorithm:86: /usr/include/c++/14/pstl/glue_algorithm_defs.h:156:1: note: candidate: 'template<class _ExecutionPolicy, class _ForwardIterator1, class _ForwardIterator2, class _UnaryOperation> __pstl::__internal::__enable_if_execution_policy<_ExecutionPolicy, _ForwardIterator2> std::transform(_ExecutionPolicy&&, _ForwardIterator1, _ForwardIterator1, _ForwardIterator2, _UnaryOperation)' 156 | transform(_ExecutionPolicy&& __exec, _ForwardIterator1 __first, _ForwardIterator1 __last, _ForwardIterator2 __result, | ^~~~~~~~~ /usr/include/c++/14/pstl/glue_algorithm_defs.h:156:1: note: candidate expects 5 arguments, 4 provided /usr/include/c++/14/pstl/glue_algorithm_defs.h:162:1: note: candidate: 'template<class _ExecutionPolicy, class _ForwardIterator1, class _ForwardIterator2, class _ForwardIterator, class _BinaryOperation> __pstl::__internal::__enable_if_execution_policy<_ExecutionPolicy, _ForwardIterator2> std::transform(_ExecutionPolicy&&, _ForwardIterator1, _ForwardIterator1, _ForwardIterator2, _ForwardIterator, _BinaryOperation)' 162 | transform(_ExecutionPolicy&& __exec, _ForwardIterator1 __first1, _ForwardIterator1 __last1, _ForwardIterator2 __first2, | ^~~~~~~~~ /usr/include/c++/14/pstl/glue_algorithm_defs.h:162:1: note: candidate expects 6 arguments, 4 provided
s269404373
p03737
C++
#define _USE_MATH_DEFINES #include <iostream> #include <iomanip> #include <cctype> #include <cstdlib> #include <algorithm> #include <functional> #include <vector> #include <cstdio> #include <cstring> #include <cmath> #include <cfloat> #include <map> #include <queue> #include <stack> #include <list> #include <string> #include <set> #include <complex> #include <utility> #include <numeric> #define rep(i,n) for(int i=0;i<(n);i++) #define REP(i,a,n) for(int i=a;i<(n);i++) #define rrep(i,n) for(int i=(n)-1;i>=0;i--) #define VI vector<int> #define VS vector<string> #define all(a) (a).begin(),(a).end() #define debug(x) cout<<#x<<": "<<x<<endl using namespace std; typedef long long ll; typedef string::const_iterator State; typedef pair<int,int> P; class ParseError {}; const int INF=1e9; char fi[101][101]; int day[12]={31,28,31,30,31,30,31,31,30,31,30,31}; double EPS = 1e-10; int N,M; int sx,sy; int gx,gy; int w,h; int ans; const int MAX_V=100; const int MAX_N=100; char o[3]={'+','-','*'}; #define md 1000003 int bow[353][353]={0}; double add(double a,double b){ if(abs(a+b)<EPS*(abs(a)+abs(b))) return 0; return a+b; } /*struct P{ double x,y; P(){} P(double x,double y):x(x),y(y){ } P operator + (P p){ return P(add(x,p.x),add(y,p.y)); } P operator - (P p){ return P(add(x,-p.x),add(y,-p.y)); } P operator *(double d){ return P(x*d,y*d); } double dot(P p){ return add(x*p.x,y*p.y); } double det(P p){ return add(x*p.y,-y*p.x); } }; bool cmp_x(const P& p,const P& q){ if(p.x!=q.x) return p.x<q.x; return p.y<q.y; } vector<P> convex_hull(P* ps, int n){ sort(ps,ps+n,cmp_x); int k=0; vector<P> qs(n*2); rep(i,n){ while(k>1&&(qs[k-1]-qs[k-2]).det(ps[i]-qs[k-1])<=0) k--; qs[k++]=ps[i]; } for(int i=n-2,t=k;i>=0;i--){ while(k>t&&(qs[k-1]-qs[k-2]).det(ps[i]-qs[k-1])<=0) k--; qs[k++]=ps[i]; } qs.resize(k-1); return qs; } int n,m; vector<double> p; P ps[101]; */ char c[520][520]; long long mod=1000000007; long long pow(ll i,ll j){ ll tmp=1; while(j){ if(j%2) tmp=tmp*i%mod; i=i*i%mod; j/=2; } return tmp; } int expression(State&); int term(State&); int factor(State&); int number(State&); int expression(State &begin){ int ret = term(begin); for(;;){ if(*begin == '+'){ begin++; ret += term(begin); } else if(*begin == '-'){ begin++; ret -= term(begin); } else break; } return ret; } int term(State &begin){ int ret = factor(begin); for(;;){ if(*begin=='*'){ begin++; ret *= factor(begin); } else if(*begin=='/'){ begin++; ret /= factor(begin); } else break; } return ret; } int factor(State &begin){ int ret; if(*begin == '('){ begin++; ret = expression(begin); begin++; } else ret = number(begin); return ret; } int number(State &begin){ int ret =0; while(isdigit(*begin)){ ret*=10; ret+=*begin - '0'; begin++; } return ret; } int henkan(string s){ map<char, int> moji; moji['m']=1000; moji['c']=100; moji['x']=10; moji['i']=1; int value=0; int temp=1; for(int i=0;i<s.size();i++){ if(s[i]>='2'&&s[i]<='9') temp=temp*(s[i]-'0'); else{ value+=temp*moji[s[i]]; temp=1; } } return value; } int main(){ string s1,s2,s3; cin>>s1>>s2>>s3; transform(s1.begin(),s1.end(),s1.begin(),toupper); transform(s2.begin(),s2.end(),s2.begin(),toupper); transform(s3.begin(),s3.end(),s3.begin(),toupper); cout<<s1[0]<<s2[0]<<s3[0]<<endl; }
a.cc: In function 'int main()': a.cc:216:18: error: no matching function for call to 'transform(std::__cxx11::basic_string<char>::iterator, std::__cxx11::basic_string<char>::iterator, std::__cxx11::basic_string<char>::iterator, <unresolved overloaded function type>)' 216 | transform(s1.begin(),s1.end(),s1.begin(),toupper); | ~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ In file included from /usr/include/c++/14/algorithm:61, from a.cc:6: /usr/include/c++/14/bits/stl_algo.h:4209:5: note: candidate: 'template<class _IIter, class _OIter, class _UnaryOperation> _OIter std::transform(_IIter, _IIter, _OIter, _UnaryOperation)' 4209 | transform(_InputIterator __first, _InputIterator __last, | ^~~~~~~~~ /usr/include/c++/14/bits/stl_algo.h:4209:5: note: template argument deduction/substitution failed: a.cc:216:18: note: couldn't deduce template parameter '_UnaryOperation' 216 | transform(s1.begin(),s1.end(),s1.begin(),toupper); | ~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ /usr/include/c++/14/bits/stl_algo.h:4247:5: note: candidate: 'template<class _IIter1, class _IIter2, class _OIter, class _BinaryOperation> _OIter std::transform(_IIter1, _IIter1, _IIter2, _OIter, _BinaryOperation)' 4247 | transform(_InputIterator1 __first1, _InputIterator1 __last1, | ^~~~~~~~~ /usr/include/c++/14/bits/stl_algo.h:4247:5: note: candidate expects 5 arguments, 4 provided In file included from /usr/include/c++/14/algorithm:86: /usr/include/c++/14/pstl/glue_algorithm_defs.h:156:1: note: candidate: 'template<class _ExecutionPolicy, class _ForwardIterator1, class _ForwardIterator2, class _UnaryOperation> __pstl::__internal::__enable_if_execution_policy<_ExecutionPolicy, _ForwardIterator2> std::transform(_ExecutionPolicy&&, _ForwardIterator1, _ForwardIterator1, _ForwardIterator2, _UnaryOperation)' 156 | transform(_ExecutionPolicy&& __exec, _ForwardIterator1 __first, _ForwardIterator1 __last, _ForwardIterator2 __result, | ^~~~~~~~~ /usr/include/c++/14/pstl/glue_algorithm_defs.h:156:1: note: candidate expects 5 arguments, 4 provided /usr/include/c++/14/pstl/glue_algorithm_defs.h:162:1: note: candidate: 'template<class _ExecutionPolicy, class _ForwardIterator1, class _ForwardIterator2, class _ForwardIterator, class _BinaryOperation> __pstl::__internal::__enable_if_execution_policy<_ExecutionPolicy, _ForwardIterator2> std::transform(_ExecutionPolicy&&, _ForwardIterator1, _ForwardIterator1, _ForwardIterator2, _ForwardIterator, _BinaryOperation)' 162 | transform(_ExecutionPolicy&& __exec, _ForwardIterator1 __first1, _ForwardIterator1 __last1, _ForwardIterator2 __first2, | ^~~~~~~~~ /usr/include/c++/14/pstl/glue_algorithm_defs.h:162:1: note: candidate expects 6 arguments, 4 provided a.cc:217:18: error: no matching function for call to 'transform(std::__cxx11::basic_string<char>::iterator, std::__cxx11::basic_string<char>::iterator, std::__cxx11::basic_string<char>::iterator, <unresolved overloaded function type>)' 217 | transform(s2.begin(),s2.end(),s2.begin(),toupper); | ~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ /usr/include/c++/14/bits/stl_algo.h:4209:5: note: candidate: 'template<class _IIter, class _OIter, class _UnaryOperation> _OIter std::transform(_IIter, _IIter, _OIter, _UnaryOperation)' 4209 | transform(_InputIterator __first, _InputIterator __last, | ^~~~~~~~~ /usr/include/c++/14/bits/stl_algo.h:4209:5: note: template argument deduction/substitution failed: a.cc:217:18: note: couldn't deduce template parameter '_UnaryOperation' 217 | transform(s2.begin(),s2.end(),s2.begin(),toupper); | ~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ /usr/include/c++/14/bits/stl_algo.h:4247:5: note: candidate: 'template<class _IIter1, class _IIter2, class _OIter, class _BinaryOperation> _OIter std::transform(_IIter1, _IIter1, _IIter2, _OIter, _BinaryOperation)' 4247 | transform(_InputIterator1 __first1, _InputIterator1 __last1, | ^~~~~~~~~ /usr/include/c++/14/bits/stl_algo.h:4247:5: note: candidate expects 5 arguments, 4 provided /usr/include/c++/14/pstl/glue_algorithm_defs.h:156:1: note: candidate: 'template<class _ExecutionPolicy, class _ForwardIterator1, class _ForwardIterator2, class _UnaryOperation> __pstl::__internal::__enable_if_execution_policy<_ExecutionPolicy, _ForwardIterator2> std::transform(_ExecutionPolicy&&, _ForwardIterator1, _ForwardIterator1, _ForwardIterator2, _UnaryOperation)' 156 | transform(_ExecutionPolicy&& __exec, _ForwardIterator1 __first, _ForwardIterator1 __last, _ForwardIterator2 __result, | ^~~~~~~~~ /usr/include/c++/14/pstl/glue_algorithm_defs.h:156:1: note: candidate expects 5 arguments, 4 provided /usr/include/c++/14/pstl/glue_algorithm_defs.h:162:1: note: candidate: 'template<class _ExecutionPolicy, class _ForwardIterator1, class _ForwardIterator2, class _ForwardIterator, class _BinaryOperation> __pstl::__internal::__enable_if_execution_policy<_ExecutionPolicy, _ForwardIterator2> std::transform(_ExecutionPolicy&&, _ForwardIterator1, _ForwardIterator1, _ForwardIterator2, _ForwardIterator, _BinaryOperation)' 162 | transform(_ExecutionPolicy&& __exec, _ForwardIterator1 __first1, _ForwardIterator1 __last1, _ForwardIterator2 __first2, | ^~~~~~~~~ /usr/include/c++/14/pstl/glue_algorithm_defs.h:162:1: note: candidate expects 6 arguments, 4 provided a.cc:218:18: error: no matching function for call to 'transform(std::__cxx11::basic_string<char>::iterator, std::__cxx11::basic_string<char>::iterator, std::__cxx11::basic_string<char>::iterator, <unresolved overloaded function type>)' 218 | transform(s3.begin(),s3.end(),s3.begin(),toupper); | ~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ /usr/include/c++/14/bits/stl_algo.h:4209:5: note: candidate: 'template<class _IIter, class _OIter, class _UnaryOperation> _OIter std::transform(_IIter, _IIter, _OIter, _UnaryOperation)' 4209 | transform(_InputIterator __first, _InputIterator __last, | ^~~~~~~~~ /usr/include/c++/14/bits/stl_algo.h:4209:5: note: template argument deduction/substitution failed: a.cc:218:18: note: couldn't deduce template parameter '_UnaryOperation' 218 | transform(s3.begin(),s3.end(),s3.begin(),toupper); | ~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ /usr/include/c++/14/bits/stl_algo.h:4247:5: note: candidate: 'template<class _IIter1, class _IIter2, class _OIter, class _BinaryOperation> _OIter std::transform(_IIter1, _IIter1, _IIter2, _OIter, _BinaryOperation)' 4247 | transform(_InputIterator1 __first1, _InputIterator1 __last1, | ^~~~~~~~~ /usr/include/c++/14/bits/stl_algo.h:4247:5: note: candidate expects 5 arguments, 4 provided /usr/include/c++/14/pstl/glue_algorithm_defs.h:156:1: note: candidate: 'template<class _ExecutionPolicy, class _ForwardIterator1, class _ForwardIterator2, class _UnaryOperation> __pstl::__internal::__enable_if_execution_policy<_ExecutionPolicy, _ForwardIterator2> std::transform(_ExecutionPolicy&&, _ForwardIterator1, _ForwardIterator1, _ForwardIterator2, _UnaryOperation)' 156 | transform(_ExecutionPolicy&& __exec, _ForwardIterator1 __first, _ForwardIterator1 __last, _ForwardIterator2 __result, | ^~~~~~~~~ /usr/include/c++/14/pstl/glue_algorithm_defs.h:156:1: note: candidate expects 5 arguments, 4 provided /usr/include/c++/14/pstl/glue_algorithm_defs.h:162:1: note: candidate: 'template<class _ExecutionPolicy, class _ForwardIterator1, class _ForwardIterator2, class _ForwardIterator, class _BinaryOperation> __pstl::__internal::__enable_if_execution_policy<_ExecutionPolicy, _ForwardIterator2> std::transform(_ExecutionPolicy&&, _ForwardIterator1, _ForwardIterator1, _ForwardIterator2, _ForwardIterator, _BinaryOperation)' 162 | transform(_ExecutionPolicy&& __exec, _ForwardIterator1 __first1, _ForwardIterator1 __last1, _ForwardIterator2 __first2, | ^~~~~~~~~ /usr/include/c++/14/pstl/glue_algorithm_defs.h:162:1: note: candidate expects 6 arguments, 4 provided
s646252543
p03737
C++
#define _USE_MATH_DEFINES // for C++ #include <cmath> #include <iostream> #include <iomanip> #include <string> #include <vector> #include <algorithm> #include <array> #include <iterator> #include <utility> #include <set> #include <random> #include <map> #include <stack> #include <queue> #include <list> #include <functional> #define LL long long using namespace std; int main() { string a, b, c, s; cin >> a >> b >> c; s = { a[0],b[0],c[0] }; transform(s.begin(), s.end(), s.begin(), toupper); cout << s << endl; return 0; }
a.cc: In function 'int main()': a.cc:27:18: error: no matching function for call to 'transform(std::__cxx11::basic_string<char>::iterator, std::__cxx11::basic_string<char>::iterator, std::__cxx11::basic_string<char>::iterator, <unresolved overloaded function type>)' 27 | transform(s.begin(), s.end(), s.begin(), toupper); | ~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ In file included from /usr/include/c++/14/algorithm:61, from a.cc:7: /usr/include/c++/14/bits/stl_algo.h:4209:5: note: candidate: 'template<class _IIter, class _OIter, class _UnaryOperation> _OIter std::transform(_IIter, _IIter, _OIter, _UnaryOperation)' 4209 | transform(_InputIterator __first, _InputIterator __last, | ^~~~~~~~~ /usr/include/c++/14/bits/stl_algo.h:4209:5: note: template argument deduction/substitution failed: a.cc:27:18: note: couldn't deduce template parameter '_UnaryOperation' 27 | transform(s.begin(), s.end(), s.begin(), toupper); | ~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ /usr/include/c++/14/bits/stl_algo.h:4247:5: note: candidate: 'template<class _IIter1, class _IIter2, class _OIter, class _BinaryOperation> _OIter std::transform(_IIter1, _IIter1, _IIter2, _OIter, _BinaryOperation)' 4247 | transform(_InputIterator1 __first1, _InputIterator1 __last1, | ^~~~~~~~~ /usr/include/c++/14/bits/stl_algo.h:4247:5: note: candidate expects 5 arguments, 4 provided In file included from /usr/include/c++/14/algorithm:86: /usr/include/c++/14/pstl/glue_algorithm_defs.h:156:1: note: candidate: 'template<class _ExecutionPolicy, class _ForwardIterator1, class _ForwardIterator2, class _UnaryOperation> __pstl::__internal::__enable_if_execution_policy<_ExecutionPolicy, _ForwardIterator2> std::transform(_ExecutionPolicy&&, _ForwardIterator1, _ForwardIterator1, _ForwardIterator2, _UnaryOperation)' 156 | transform(_ExecutionPolicy&& __exec, _ForwardIterator1 __first, _ForwardIterator1 __last, _ForwardIterator2 __result, | ^~~~~~~~~ /usr/include/c++/14/pstl/glue_algorithm_defs.h:156:1: note: candidate expects 5 arguments, 4 provided /usr/include/c++/14/pstl/glue_algorithm_defs.h:162:1: note: candidate: 'template<class _ExecutionPolicy, class _ForwardIterator1, class _ForwardIterator2, class _ForwardIterator, class _BinaryOperation> __pstl::__internal::__enable_if_execution_policy<_ExecutionPolicy, _ForwardIterator2> std::transform(_ExecutionPolicy&&, _ForwardIterator1, _ForwardIterator1, _ForwardIterator2, _ForwardIterator, _BinaryOperation)' 162 | transform(_ExecutionPolicy&& __exec, _ForwardIterator1 __first1, _ForwardIterator1 __last1, _ForwardIterator2 __first2, | ^~~~~~~~~ /usr/include/c++/14/pstl/glue_algorithm_defs.h:162:1: note: candidate expects 6 arguments, 4 provided
s300651095
p03737
C++
#include<iostream> #include<algorithm> #include<math.h> #include<vector> #include<string> #include <cstdlib> using namespace std; int main() { string a, b, c; cin >> a >> b >> c; transform(a.begin(), a.end(), a.begin(), toupper); transform(b.begin(), b.end(), b.begin(), toupper); transform(c.begin(), c.end(), c.begin(), toupper); cout << a[0] << b[0] << c[0] << endl; return 0; }
a.cc: In function 'int main()': a.cc:12:18: error: no matching function for call to 'transform(std::__cxx11::basic_string<char>::iterator, std::__cxx11::basic_string<char>::iterator, std::__cxx11::basic_string<char>::iterator, <unresolved overloaded function type>)' 12 | transform(a.begin(), a.end(), a.begin(), toupper); | ~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ In file included from /usr/include/c++/14/algorithm:61, from a.cc:2: /usr/include/c++/14/bits/stl_algo.h:4209:5: note: candidate: 'template<class _IIter, class _OIter, class _UnaryOperation> _OIter std::transform(_IIter, _IIter, _OIter, _UnaryOperation)' 4209 | transform(_InputIterator __first, _InputIterator __last, | ^~~~~~~~~ /usr/include/c++/14/bits/stl_algo.h:4209:5: note: template argument deduction/substitution failed: a.cc:12:18: note: couldn't deduce template parameter '_UnaryOperation' 12 | transform(a.begin(), a.end(), a.begin(), toupper); | ~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ /usr/include/c++/14/bits/stl_algo.h:4247:5: note: candidate: 'template<class _IIter1, class _IIter2, class _OIter, class _BinaryOperation> _OIter std::transform(_IIter1, _IIter1, _IIter2, _OIter, _BinaryOperation)' 4247 | transform(_InputIterator1 __first1, _InputIterator1 __last1, | ^~~~~~~~~ /usr/include/c++/14/bits/stl_algo.h:4247:5: note: candidate expects 5 arguments, 4 provided In file included from /usr/include/c++/14/algorithm:86: /usr/include/c++/14/pstl/glue_algorithm_defs.h:156:1: note: candidate: 'template<class _ExecutionPolicy, class _ForwardIterator1, class _ForwardIterator2, class _UnaryOperation> __pstl::__internal::__enable_if_execution_policy<_ExecutionPolicy, _ForwardIterator2> std::transform(_ExecutionPolicy&&, _ForwardIterator1, _ForwardIterator1, _ForwardIterator2, _UnaryOperation)' 156 | transform(_ExecutionPolicy&& __exec, _ForwardIterator1 __first, _ForwardIterator1 __last, _ForwardIterator2 __result, | ^~~~~~~~~ /usr/include/c++/14/pstl/glue_algorithm_defs.h:156:1: note: candidate expects 5 arguments, 4 provided /usr/include/c++/14/pstl/glue_algorithm_defs.h:162:1: note: candidate: 'template<class _ExecutionPolicy, class _ForwardIterator1, class _ForwardIterator2, class _ForwardIterator, class _BinaryOperation> __pstl::__internal::__enable_if_execution_policy<_ExecutionPolicy, _ForwardIterator2> std::transform(_ExecutionPolicy&&, _ForwardIterator1, _ForwardIterator1, _ForwardIterator2, _ForwardIterator, _BinaryOperation)' 162 | transform(_ExecutionPolicy&& __exec, _ForwardIterator1 __first1, _ForwardIterator1 __last1, _ForwardIterator2 __first2, | ^~~~~~~~~ /usr/include/c++/14/pstl/glue_algorithm_defs.h:162:1: note: candidate expects 6 arguments, 4 provided a.cc:13:18: error: no matching function for call to 'transform(std::__cxx11::basic_string<char>::iterator, std::__cxx11::basic_string<char>::iterator, std::__cxx11::basic_string<char>::iterator, <unresolved overloaded function type>)' 13 | transform(b.begin(), b.end(), b.begin(), toupper); | ~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ /usr/include/c++/14/bits/stl_algo.h:4209:5: note: candidate: 'template<class _IIter, class _OIter, class _UnaryOperation> _OIter std::transform(_IIter, _IIter, _OIter, _UnaryOperation)' 4209 | transform(_InputIterator __first, _InputIterator __last, | ^~~~~~~~~ /usr/include/c++/14/bits/stl_algo.h:4209:5: note: template argument deduction/substitution failed: a.cc:13:18: note: couldn't deduce template parameter '_UnaryOperation' 13 | transform(b.begin(), b.end(), b.begin(), toupper); | ~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ /usr/include/c++/14/bits/stl_algo.h:4247:5: note: candidate: 'template<class _IIter1, class _IIter2, class _OIter, class _BinaryOperation> _OIter std::transform(_IIter1, _IIter1, _IIter2, _OIter, _BinaryOperation)' 4247 | transform(_InputIterator1 __first1, _InputIterator1 __last1, | ^~~~~~~~~ /usr/include/c++/14/bits/stl_algo.h:4247:5: note: candidate expects 5 arguments, 4 provided /usr/include/c++/14/pstl/glue_algorithm_defs.h:156:1: note: candidate: 'template<class _ExecutionPolicy, class _ForwardIterator1, class _ForwardIterator2, class _UnaryOperation> __pstl::__internal::__enable_if_execution_policy<_ExecutionPolicy, _ForwardIterator2> std::transform(_ExecutionPolicy&&, _ForwardIterator1, _ForwardIterator1, _ForwardIterator2, _UnaryOperation)' 156 | transform(_ExecutionPolicy&& __exec, _ForwardIterator1 __first, _ForwardIterator1 __last, _ForwardIterator2 __result, | ^~~~~~~~~ /usr/include/c++/14/pstl/glue_algorithm_defs.h:156:1: note: candidate expects 5 arguments, 4 provided /usr/include/c++/14/pstl/glue_algorithm_defs.h:162:1: note: candidate: 'template<class _ExecutionPolicy, class _ForwardIterator1, class _ForwardIterator2, class _ForwardIterator, class _BinaryOperation> __pstl::__internal::__enable_if_execution_policy<_ExecutionPolicy, _ForwardIterator2> std::transform(_ExecutionPolicy&&, _ForwardIterator1, _ForwardIterator1, _ForwardIterator2, _ForwardIterator, _BinaryOperation)' 162 | transform(_ExecutionPolicy&& __exec, _ForwardIterator1 __first1, _ForwardIterator1 __last1, _ForwardIterator2 __first2, | ^~~~~~~~~ /usr/include/c++/14/pstl/glue_algorithm_defs.h:162:1: note: candidate expects 6 arguments, 4 provided a.cc:14:18: error: no matching function for call to 'transform(std::__cxx11::basic_string<char>::iterator, std::__cxx11::basic_string<char>::iterator, std::__cxx11::basic_string<char>::iterator, <unresolved overloaded function type>)' 14 | transform(c.begin(), c.end(), c.begin(), toupper); | ~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ /usr/include/c++/14/bits/stl_algo.h:4209:5: note: candidate: 'template<class _IIter, class _OIter, class _UnaryOperation> _OIter std::transform(_IIter, _IIter, _OIter, _UnaryOperation)' 4209 | transform(_InputIterator __first, _InputIterator __last, | ^~~~~~~~~ /usr/include/c++/14/bits/stl_algo.h:4209:5: note: template argument deduction/substitution failed: a.cc:14:18: note: couldn't deduce template parameter '_UnaryOperation' 14 | transform(c.begin(), c.end(), c.begin(), toupper); | ~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ /usr/include/c++/14/bits/stl_algo.h:4247:5: note: candidate: 'template<class _IIter1, class _IIter2, class _OIter, class _BinaryOperation> _OIter std::transform(_IIter1, _IIter1, _IIter2, _OIter, _BinaryOperation)' 4247 | transform(_InputIterator1 __first1, _InputIterator1 __last1, | ^~~~~~~~~ /usr/include/c++/14/bits/stl_algo.h:4247:5: note: candidate expects 5 arguments, 4 provided /usr/include/c++/14/pstl/glue_algorithm_defs.h:156:1: note: candidate: 'template<class _ExecutionPolicy, class _ForwardIterator1, class _ForwardIterator2, class _UnaryOperation> __pstl::__internal::__enable_if_execution_policy<_ExecutionPolicy, _ForwardIterator2> std::transform(_ExecutionPolicy&&, _ForwardIterator1, _ForwardIterator1, _ForwardIterator2, _UnaryOperation)' 156 | transform(_ExecutionPolicy&& __exec, _ForwardIterator1 __first, _ForwardIterator1 __last, _ForwardIterator2 __result, | ^~~~~~~~~ /usr/include/c++/14/pstl/glue_algorithm_defs.h:156:1: note: candidate expects 5 arguments, 4 provided /usr/include/c++/14/pstl/glue_algorithm_defs.h:162:1: note: candidate: 'template<class _ExecutionPolicy, class _ForwardIterator1, class _ForwardIterator2, class _ForwardIterator, class _BinaryOperation> __pstl::__internal::__enable_if_execution_policy<_ExecutionPolicy, _ForwardIterator2> std::transform(_ExecutionPolicy&&, _ForwardIterator1, _ForwardIterator1, _ForwardIterator2, _ForwardIterator, _BinaryOperation)' 162 | transform(_ExecutionPolicy&& __exec, _ForwardIterator1 __first1, _ForwardIterator1 __last1, _ForwardIterator2 __first2, | ^~~~~~~~~ /usr/include/c++/14/pstl/glue_algorithm_defs.h:162:1: note: candidate expects 6 arguments, 4 provided
s278921397
p03737
C++
#include <iostream> #include <algorithm> #include <cstdio> #include <cmath> #include <math.h> #include <string> #include <string.h> #include <stack> #include <queue> #include <vector> #include <utility> #include <set> #include <map> #include <stdlib.h> #include <iomanip> using namespace std; #define ll long long #define vi vector<int> #define FOR(i,a,b) for(int i=(int)(a);i<(int)(b);i++) #define REP(i,n) for(int i=0;i<(int)(n);i++) #define pb push_back #define pi 3.14159265359 int main() { string s1, s2, s3; string ans; cin >> s1 >> s2 >> s3; transform(s1.begin(), s1.end(), s1.begin(), toupper); transform(s2.begin(), s2.end(), s2.begin(), toupper); transform(s3.begin(), s3.end(), s3.begin(), toupper); cout << s1[0] << s2[0] << s3[0]; return 0; }
a.cc: In function 'int main()': a.cc:31:18: error: no matching function for call to 'transform(std::__cxx11::basic_string<char>::iterator, std::__cxx11::basic_string<char>::iterator, std::__cxx11::basic_string<char>::iterator, <unresolved overloaded function type>)' 31 | transform(s1.begin(), s1.end(), s1.begin(), toupper); | ~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ In file included from /usr/include/c++/14/algorithm:61, from a.cc:2: /usr/include/c++/14/bits/stl_algo.h:4209:5: note: candidate: 'template<class _IIter, class _OIter, class _UnaryOperation> _OIter std::transform(_IIter, _IIter, _OIter, _UnaryOperation)' 4209 | transform(_InputIterator __first, _InputIterator __last, | ^~~~~~~~~ /usr/include/c++/14/bits/stl_algo.h:4209:5: note: template argument deduction/substitution failed: a.cc:31:18: note: couldn't deduce template parameter '_UnaryOperation' 31 | transform(s1.begin(), s1.end(), s1.begin(), toupper); | ~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ /usr/include/c++/14/bits/stl_algo.h:4247:5: note: candidate: 'template<class _IIter1, class _IIter2, class _OIter, class _BinaryOperation> _OIter std::transform(_IIter1, _IIter1, _IIter2, _OIter, _BinaryOperation)' 4247 | transform(_InputIterator1 __first1, _InputIterator1 __last1, | ^~~~~~~~~ /usr/include/c++/14/bits/stl_algo.h:4247:5: note: candidate expects 5 arguments, 4 provided In file included from /usr/include/c++/14/algorithm:86: /usr/include/c++/14/pstl/glue_algorithm_defs.h:156:1: note: candidate: 'template<class _ExecutionPolicy, class _ForwardIterator1, class _ForwardIterator2, class _UnaryOperation> __pstl::__internal::__enable_if_execution_policy<_ExecutionPolicy, _ForwardIterator2> std::transform(_ExecutionPolicy&&, _ForwardIterator1, _ForwardIterator1, _ForwardIterator2, _UnaryOperation)' 156 | transform(_ExecutionPolicy&& __exec, _ForwardIterator1 __first, _ForwardIterator1 __last, _ForwardIterator2 __result, | ^~~~~~~~~ /usr/include/c++/14/pstl/glue_algorithm_defs.h:156:1: note: candidate expects 5 arguments, 4 provided /usr/include/c++/14/pstl/glue_algorithm_defs.h:162:1: note: candidate: 'template<class _ExecutionPolicy, class _ForwardIterator1, class _ForwardIterator2, class _ForwardIterator, class _BinaryOperation> __pstl::__internal::__enable_if_execution_policy<_ExecutionPolicy, _ForwardIterator2> std::transform(_ExecutionPolicy&&, _ForwardIterator1, _ForwardIterator1, _ForwardIterator2, _ForwardIterator, _BinaryOperation)' 162 | transform(_ExecutionPolicy&& __exec, _ForwardIterator1 __first1, _ForwardIterator1 __last1, _ForwardIterator2 __first2, | ^~~~~~~~~ /usr/include/c++/14/pstl/glue_algorithm_defs.h:162:1: note: candidate expects 6 arguments, 4 provided a.cc:32:18: error: no matching function for call to 'transform(std::__cxx11::basic_string<char>::iterator, std::__cxx11::basic_string<char>::iterator, std::__cxx11::basic_string<char>::iterator, <unresolved overloaded function type>)' 32 | transform(s2.begin(), s2.end(), s2.begin(), toupper); | ~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ /usr/include/c++/14/bits/stl_algo.h:4209:5: note: candidate: 'template<class _IIter, class _OIter, class _UnaryOperation> _OIter std::transform(_IIter, _IIter, _OIter, _UnaryOperation)' 4209 | transform(_InputIterator __first, _InputIterator __last, | ^~~~~~~~~ /usr/include/c++/14/bits/stl_algo.h:4209:5: note: template argument deduction/substitution failed: a.cc:32:18: note: couldn't deduce template parameter '_UnaryOperation' 32 | transform(s2.begin(), s2.end(), s2.begin(), toupper); | ~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ /usr/include/c++/14/bits/stl_algo.h:4247:5: note: candidate: 'template<class _IIter1, class _IIter2, class _OIter, class _BinaryOperation> _OIter std::transform(_IIter1, _IIter1, _IIter2, _OIter, _BinaryOperation)' 4247 | transform(_InputIterator1 __first1, _InputIterator1 __last1, | ^~~~~~~~~ /usr/include/c++/14/bits/stl_algo.h:4247:5: note: candidate expects 5 arguments, 4 provided /usr/include/c++/14/pstl/glue_algorithm_defs.h:156:1: note: candidate: 'template<class _ExecutionPolicy, class _ForwardIterator1, class _ForwardIterator2, class _UnaryOperation> __pstl::__internal::__enable_if_execution_policy<_ExecutionPolicy, _ForwardIterator2> std::transform(_ExecutionPolicy&&, _ForwardIterator1, _ForwardIterator1, _ForwardIterator2, _UnaryOperation)' 156 | transform(_ExecutionPolicy&& __exec, _ForwardIterator1 __first, _ForwardIterator1 __last, _ForwardIterator2 __result, | ^~~~~~~~~ /usr/include/c++/14/pstl/glue_algorithm_defs.h:156:1: note: candidate expects 5 arguments, 4 provided /usr/include/c++/14/pstl/glue_algorithm_defs.h:162:1: note: candidate: 'template<class _ExecutionPolicy, class _ForwardIterator1, class _ForwardIterator2, class _ForwardIterator, class _BinaryOperation> __pstl::__internal::__enable_if_execution_policy<_ExecutionPolicy, _ForwardIterator2> std::transform(_ExecutionPolicy&&, _ForwardIterator1, _ForwardIterator1, _ForwardIterator2, _ForwardIterator, _BinaryOperation)' 162 | transform(_ExecutionPolicy&& __exec, _ForwardIterator1 __first1, _ForwardIterator1 __last1, _ForwardIterator2 __first2, | ^~~~~~~~~ /usr/include/c++/14/pstl/glue_algorithm_defs.h:162:1: note: candidate expects 6 arguments, 4 provided a.cc:33:18: error: no matching function for call to 'transform(std::__cxx11::basic_string<char>::iterator, std::__cxx11::basic_string<char>::iterator, std::__cxx11::basic_string<char>::iterator, <unresolved overloaded function type>)' 33 | transform(s3.begin(), s3.end(), s3.begin(), toupper); | ~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ /usr/include/c++/14/bits/stl_algo.h:4209:5: note: candidate: 'template<class _IIter, class _OIter, class _UnaryOperation> _OIter std::transform(_IIter, _IIter, _OIter, _UnaryOperation)' 4209 | transform(_InputIterator __first, _InputIterator __last, | ^~~~~~~~~ /usr/include/c++/14/bits/stl_algo.h:4209:5: note: template argument deduction/substitution failed: a.cc:33:18: note: couldn't deduce template parameter '_UnaryOperation' 33 | transform(s3.begin(), s3.end(), s3.begin(), toupper); | ~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ /usr/include/c++/14/bits/stl_algo.h:4247:5: note: candidate: 'template<class _IIter1, class _IIter2, class _OIter, class _BinaryOperation> _OIter std::transform(_IIter1, _IIter1, _IIter2, _OIter, _BinaryOperation)' 4247 | transform(_InputIterator1 __first1, _InputIterator1 __last1, | ^~~~~~~~~ /usr/include/c++/14/bits/stl_algo.h:4247:5: note: candidate expects 5 arguments, 4 provided /usr/include/c++/14/pstl/glue_algorithm_defs.h:156:1: note: candidate: 'template<class _ExecutionPolicy, class _ForwardIterator1, class _ForwardIterator2, class _UnaryOperation> __pstl::__internal::__enable_if_execution_policy<_ExecutionPolicy, _ForwardIterator2> std::transform(_ExecutionPolicy&&, _ForwardIterator1, _ForwardIterator1, _ForwardIterator2, _UnaryOperation)' 156 | transform(_ExecutionPolicy&& __exec, _ForwardIterator1 __first, _ForwardIterator1 __last, _ForwardIterator2 __result, | ^~~~~~~~~ /usr/include/c++/14/pstl/glue_algorithm_defs.h:156:1: note: candidate expects 5 arguments, 4 provided /usr/include/c++/14/pstl/glue_algorithm_defs.h:162:1: note: candidate: 'template<class _ExecutionPolicy, class _ForwardIterator1, class _ForwardIterator2, class _ForwardIterator, class _BinaryOperation> __pstl::__internal::__enable_if_execution_policy<_ExecutionPolicy, _ForwardIterator2> std::transform(_ExecutionPolicy&&, _ForwardIterator1, _ForwardIterator1, _ForwardIterator2, _ForwardIterator, _BinaryOperation)' 162 | transform(_ExecutionPolicy&& __exec, _ForwardIterator1 __first1, _ForwardIterator1 __last1, _ForwardIterator2 __first2, | ^~~~~~~~~ /usr/include/c++/14/pstl/glue_algorithm_defs.h:162:1: note: candidate expects 6 arguments, 4 provided
s024285931
p03737
C++
#include <iostream> #include <algorithm> #include <string> #include <vector> using namespace std; int main() { string s[3]; string ans; cin>>s[0]>>s[1]>>s[2]; for(int i=0;i<3;i++) { ans+=s[i][0]; } transform(ans.begin(),ans.end(),ans.begin(),toupper); cout<<ans<<endl; return 0; }
a.cc: In function 'int main()': a.cc:17:18: error: no matching function for call to 'transform(std::__cxx11::basic_string<char>::iterator, std::__cxx11::basic_string<char>::iterator, std::__cxx11::basic_string<char>::iterator, <unresolved overloaded function type>)' 17 | transform(ans.begin(),ans.end(),ans.begin(),toupper); | ~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ In file included from /usr/include/c++/14/algorithm:61, from a.cc:2: /usr/include/c++/14/bits/stl_algo.h:4209:5: note: candidate: 'template<class _IIter, class _OIter, class _UnaryOperation> _OIter std::transform(_IIter, _IIter, _OIter, _UnaryOperation)' 4209 | transform(_InputIterator __first, _InputIterator __last, | ^~~~~~~~~ /usr/include/c++/14/bits/stl_algo.h:4209:5: note: template argument deduction/substitution failed: a.cc:17:18: note: couldn't deduce template parameter '_UnaryOperation' 17 | transform(ans.begin(),ans.end(),ans.begin(),toupper); | ~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ /usr/include/c++/14/bits/stl_algo.h:4247:5: note: candidate: 'template<class _IIter1, class _IIter2, class _OIter, class _BinaryOperation> _OIter std::transform(_IIter1, _IIter1, _IIter2, _OIter, _BinaryOperation)' 4247 | transform(_InputIterator1 __first1, _InputIterator1 __last1, | ^~~~~~~~~ /usr/include/c++/14/bits/stl_algo.h:4247:5: note: candidate expects 5 arguments, 4 provided In file included from /usr/include/c++/14/algorithm:86: /usr/include/c++/14/pstl/glue_algorithm_defs.h:156:1: note: candidate: 'template<class _ExecutionPolicy, class _ForwardIterator1, class _ForwardIterator2, class _UnaryOperation> __pstl::__internal::__enable_if_execution_policy<_ExecutionPolicy, _ForwardIterator2> std::transform(_ExecutionPolicy&&, _ForwardIterator1, _ForwardIterator1, _ForwardIterator2, _UnaryOperation)' 156 | transform(_ExecutionPolicy&& __exec, _ForwardIterator1 __first, _ForwardIterator1 __last, _ForwardIterator2 __result, | ^~~~~~~~~ /usr/include/c++/14/pstl/glue_algorithm_defs.h:156:1: note: candidate expects 5 arguments, 4 provided /usr/include/c++/14/pstl/glue_algorithm_defs.h:162:1: note: candidate: 'template<class _ExecutionPolicy, class _ForwardIterator1, class _ForwardIterator2, class _ForwardIterator, class _BinaryOperation> __pstl::__internal::__enable_if_execution_policy<_ExecutionPolicy, _ForwardIterator2> std::transform(_ExecutionPolicy&&, _ForwardIterator1, _ForwardIterator1, _ForwardIterator2, _ForwardIterator, _BinaryOperation)' 162 | transform(_ExecutionPolicy&& __exec, _ForwardIterator1 __first1, _ForwardIterator1 __last1, _ForwardIterator2 __first2, | ^~~~~~~~~ /usr/include/c++/14/pstl/glue_algorithm_defs.h:162:1: note: candidate expects 6 arguments, 4 provided
s078289735
p03737
C++
#include <iostream> #include <string> #include <algorithm> #include <cctype> using namespace std; int main() { string s, ans; for (int i = 0;i < 3;i++) { cin >> s; transform(s.begin(), s.end(), s.begin(), toupper); ans.push_back(s[0]); } cout << ans << endl; return 0; }
a.cc: In function 'int main()': a.cc:15:26: error: no matching function for call to 'transform(std::__cxx11::basic_string<char>::iterator, std::__cxx11::basic_string<char>::iterator, std::__cxx11::basic_string<char>::iterator, <unresolved overloaded function type>)' 15 | transform(s.begin(), s.end(), s.begin(), toupper); | ~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ In file included from /usr/include/c++/14/algorithm:61, from a.cc:3: /usr/include/c++/14/bits/stl_algo.h:4209:5: note: candidate: 'template<class _IIter, class _OIter, class _UnaryOperation> _OIter std::transform(_IIter, _IIter, _OIter, _UnaryOperation)' 4209 | transform(_InputIterator __first, _InputIterator __last, | ^~~~~~~~~ /usr/include/c++/14/bits/stl_algo.h:4209:5: note: template argument deduction/substitution failed: a.cc:15:26: note: couldn't deduce template parameter '_UnaryOperation' 15 | transform(s.begin(), s.end(), s.begin(), toupper); | ~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ /usr/include/c++/14/bits/stl_algo.h:4247:5: note: candidate: 'template<class _IIter1, class _IIter2, class _OIter, class _BinaryOperation> _OIter std::transform(_IIter1, _IIter1, _IIter2, _OIter, _BinaryOperation)' 4247 | transform(_InputIterator1 __first1, _InputIterator1 __last1, | ^~~~~~~~~ /usr/include/c++/14/bits/stl_algo.h:4247:5: note: candidate expects 5 arguments, 4 provided In file included from /usr/include/c++/14/algorithm:86: /usr/include/c++/14/pstl/glue_algorithm_defs.h:156:1: note: candidate: 'template<class _ExecutionPolicy, class _ForwardIterator1, class _ForwardIterator2, class _UnaryOperation> __pstl::__internal::__enable_if_execution_policy<_ExecutionPolicy, _ForwardIterator2> std::transform(_ExecutionPolicy&&, _ForwardIterator1, _ForwardIterator1, _ForwardIterator2, _UnaryOperation)' 156 | transform(_ExecutionPolicy&& __exec, _ForwardIterator1 __first, _ForwardIterator1 __last, _ForwardIterator2 __result, | ^~~~~~~~~ /usr/include/c++/14/pstl/glue_algorithm_defs.h:156:1: note: candidate expects 5 arguments, 4 provided /usr/include/c++/14/pstl/glue_algorithm_defs.h:162:1: note: candidate: 'template<class _ExecutionPolicy, class _ForwardIterator1, class _ForwardIterator2, class _ForwardIterator, class _BinaryOperation> __pstl::__internal::__enable_if_execution_policy<_ExecutionPolicy, _ForwardIterator2> std::transform(_ExecutionPolicy&&, _ForwardIterator1, _ForwardIterator1, _ForwardIterator2, _ForwardIterator, _BinaryOperation)' 162 | transform(_ExecutionPolicy&& __exec, _ForwardIterator1 __first1, _ForwardIterator1 __last1, _ForwardIterator2 __first2, | ^~~~~~~~~ /usr/include/c++/14/pstl/glue_algorithm_defs.h:162:1: note: candidate expects 6 arguments, 4 provided
s960853147
p03737
C++
#define _USE_MATH_DEFINES #include <iostream> #include <iomanip> #include <cctype> #include <algorithm> #include <functional> #include <vector> #include <cstdio> #include <cstring> #include <cmath> #include <cfloat> #include <map> #include <queue> #include <stack> #include <list> #include <string> #include <set> #include <complex> #include <utility> #include <numeric> #define rep(i,n) for(int i=0;i<(n);i++) #define REP(i,a,n) for(int i=a;i<(n);i++) #define rrep(i,n) for(int i=(n)-1;i>=0;i--) #define VI vector<int> #define VS vector<string> #define all(a) (a).begin(),(a).end() #define debug(x) cout<<#x<<": "<<x<<endl using namespace std; typedef long long ll; typedef string::const_iterator State; typedef pair<int,int> P; class ParseError {}; const int INF=1e9; char fi[101][101]; int day[12]={31,28,31,30,31,30,31,31,30,31,30,31}; double EPS = 1e-10; int N,M; int sx,sy; int gx,gy; int w,h; int ans; const int MAX_V=100; const int MAX_N=100; char o[3]={'+','-','*'}; #define md 1000003 int bow[353][353]={0}; double add(double a,double b){ if(abs(a+b)<EPS*(abs(a)+abs(b))) return 0; return a+b; } /*struct P{ double x,y; P(){} P(double x,double y):x(x),y(y){ } P operator + (P p){ return P(add(x,p.x),add(y,p.y)); } P operator - (P p){ return P(add(x,-p.x),add(y,-p.y)); } P operator *(double d){ return P(x*d,y*d); } double dot(P p){ return add(x*p.x,y*p.y); } double det(P p){ return add(x*p.y,-y*p.x); } }; bool cmp_x(const P& p,const P& q){ if(p.x!=q.x) return p.x<q.x; return p.y<q.y; } vector<P> convex_hull(P* ps, int n){ sort(ps,ps+n,cmp_x); int k=0; vector<P> qs(n*2); rep(i,n){ while(k>1&&(qs[k-1]-qs[k-2]).det(ps[i]-qs[k-1])<=0) k--; qs[k++]=ps[i]; } for(int i=n-2,t=k;i>=0;i--){ while(k>t&&(qs[k-1]-qs[k-2]).det(ps[i]-qs[k-1])<=0) k--; qs[k++]=ps[i]; } qs.resize(k-1); return qs; } int n,m; vector<double> p; P ps[101]; */ char c[520][520]; long long mod=1000000007; long long pow(ll i,ll j){ ll tmp=1; while(j){ if(j%2) tmp=tmp*i%mod; i=i*i%mod; j/=2; } return tmp; } int expression(State&); int term(State&); int factor(State&); int number(State&); int expression(State &begin){ int ret = term(begin); for(;;){ if(*begin == '+'){ begin++; ret += term(begin); } else if(*begin == '-'){ begin++; ret -= term(begin); } else break; } return ret; } int term(State &begin){ int ret = factor(begin); for(;;){ if(*begin=='*'){ begin++; ret *= factor(begin); } else if(*begin=='/'){ begin++; ret /= factor(begin); } else break; } return ret; } int factor(State &begin){ int ret; if(*begin == '('){ begin++; ret = expression(begin); begin++; } else ret = number(begin); return ret; } int number(State &begin){ int ret =0; while(isdigit(*begin)){ ret*=10; ret+=*begin - '0'; begin++; } return ret; } int henkan(string s){ map<char, int> moji; moji['m']=1000; moji['c']=100; moji['x']=10; moji['i']=1; int value=0; int temp=1; for(int i=0;i<s.size();i++){ if(s[i]>='2'&&s[i]<='9') temp=temp*(s[i]-'0'); else{ value+=temp*moji[s[i]]; temp=1; } } return value; } int main(){ string s1,s2,s3; cin>>s1>>s2>>s3; trasnform(s1.begin(),s1.end(),s1.begin(),toupper); trasnform(s2.begin(),s1.end(),s1.begin(),toupper); trasnform(s3.begin(),s1.end(),s1.begin(),toupper); cout<<s1[0]<<s2[0]<<s3[0]<<endl; }
a.cc: In function 'int main()': a.cc:215:9: error: 'trasnform' was not declared in this scope 215 | trasnform(s1.begin(),s1.end(),s1.begin(),toupper); | ^~~~~~~~~
s953934417
p03737
C++
#include <iostream> #include <string> using namespace std; string a, b, c; int main() { cin >> a >> b >> c; string ans = ""; ans = a[0]; ans += b[0]; ans += c[0]; transform(ans.begin(), ans.end(), ans.begin(), ::toupper); cout << ans << endl; return 0; }
a.cc: In function 'int main()': a.cc:13:3: error: 'transform' was not declared in this scope 13 | transform(ans.begin(), ans.end(), ans.begin(), ::toupper); | ^~~~~~~~~
s138708370
p03737
Java
import java.io.OutputStream; import java.io.IOException; import java.io.InputStream; import java.io.PrintWriter; import java.util.InputMismatchException; import java.io.IOException; import java.io.InputStream; /** * Built using CHelper plug-in * Actual solution is at the top * * @author Ashish Karel rasensuriken */ public class Main { public static void main(String[] args) { InputStream inputStream = System.in; OutputStream outputStream = System.out; FastReader in = new FastReader(inputStream); PrintWriter out = new PrintWriter(outputStream); TaskA solver = new TaskA(); solver.solve(1, in, out); out.close(); } static class TaskA { public void solve(int testNumber, FastReader in, PrintWriter out) { String s1 = = in.nextString(); String s2 = in.nextString(); String s3 = in.nextString(); StringBuilder ans = new StringBuilder(); ans.append(s1.charAt(0)); ans.append(s2.charAt(0)); ans.append(s3.charAt(0)); out.println(ans.toString().toUpperCase()); } } static class FastReader { private InputStream stream; private byte[] buf = new byte[1024]; private int curChar; private int pnumChars; private FastReader.SpaceCharFilter filter; public FastReader(InputStream stream) { this.stream = stream; } public int read() { if (pnumChars == -1) { throw new InputMismatchException(); } if (curChar >= pnumChars) { curChar = 0; try { pnumChars = stream.read(buf); } catch (IOException e) { throw new InputMismatchException(); } if (pnumChars <= 0) { return -1; } } return buf[curChar++]; } public String nextString() { int c = read(); while (isSpaceChar(c)) c = read(); StringBuilder res = new StringBuilder(); do { res.appendCodePoint(c); c = read(); } while (!isSpaceChar(c)); return res.toString(); } public boolean isSpaceChar(int c) { if (filter != null) { return filter.isSpaceChar(c); } return isWhitespace(c); } public static boolean isWhitespace(int c) { return c == ' ' || c == '\n' || c == '\r' || c == '\t' || c == -1; } public interface SpaceCharFilter { public boolean isSpaceChar(int ch); } } }
Main.java:28: error: illegal start of expression String s1 = = in.nextString(); ^ 1 error
s344391329
p03737
C++
#include <iostream> #include <vector> #include <algorithm> #include <string> using namespace std; using ll = long long; #define reps(i,s,n) for(int (i) = (s) ; (i) < (n); ++(i)) #define rep(i,n) reps(i,0,n) string s1,s2,s3; string s4; int main(){ cin >> s1 >> s2 >> s3; s4 = (s1[0]); s4 += (s2[0]); s4 += (s3[0]); transform(s4.cbegin(),s4.cend(),s4.begin(),toupper); cout << s4 << endl; return 0; }
a.cc: In function 'int main()': a.cc:21:14: error: no matching function for call to 'transform(std::__cxx11::basic_string<char>::const_iterator, std::__cxx11::basic_string<char>::const_iterator, std::__cxx11::basic_string<char>::iterator, <unresolved overloaded function type>)' 21 | transform(s4.cbegin(),s4.cend(),s4.begin(),toupper); | ~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ In file included from /usr/include/c++/14/algorithm:61, from a.cc:3: /usr/include/c++/14/bits/stl_algo.h:4209:5: note: candidate: 'template<class _IIter, class _OIter, class _UnaryOperation> _OIter std::transform(_IIter, _IIter, _OIter, _UnaryOperation)' 4209 | transform(_InputIterator __first, _InputIterator __last, | ^~~~~~~~~ /usr/include/c++/14/bits/stl_algo.h:4209:5: note: template argument deduction/substitution failed: a.cc:21:14: note: couldn't deduce template parameter '_UnaryOperation' 21 | transform(s4.cbegin(),s4.cend(),s4.begin(),toupper); | ~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ /usr/include/c++/14/bits/stl_algo.h:4247:5: note: candidate: 'template<class _IIter1, class _IIter2, class _OIter, class _BinaryOperation> _OIter std::transform(_IIter1, _IIter1, _IIter2, _OIter, _BinaryOperation)' 4247 | transform(_InputIterator1 __first1, _InputIterator1 __last1, | ^~~~~~~~~ /usr/include/c++/14/bits/stl_algo.h:4247:5: note: candidate expects 5 arguments, 4 provided In file included from /usr/include/c++/14/algorithm:86: /usr/include/c++/14/pstl/glue_algorithm_defs.h:156:1: note: candidate: 'template<class _ExecutionPolicy, class _ForwardIterator1, class _ForwardIterator2, class _UnaryOperation> __pstl::__internal::__enable_if_execution_policy<_ExecutionPolicy, _ForwardIterator2> std::transform(_ExecutionPolicy&&, _ForwardIterator1, _ForwardIterator1, _ForwardIterator2, _UnaryOperation)' 156 | transform(_ExecutionPolicy&& __exec, _ForwardIterator1 __first, _ForwardIterator1 __last, _ForwardIterator2 __result, | ^~~~~~~~~ /usr/include/c++/14/pstl/glue_algorithm_defs.h:156:1: note: candidate expects 5 arguments, 4 provided /usr/include/c++/14/pstl/glue_algorithm_defs.h:162:1: note: candidate: 'template<class _ExecutionPolicy, class _ForwardIterator1, class _ForwardIterator2, class _ForwardIterator, class _BinaryOperation> __pstl::__internal::__enable_if_execution_policy<_ExecutionPolicy, _ForwardIterator2> std::transform(_ExecutionPolicy&&, _ForwardIterator1, _ForwardIterator1, _ForwardIterator2, _ForwardIterator, _BinaryOperation)' 162 | transform(_ExecutionPolicy&& __exec, _ForwardIterator1 __first1, _ForwardIterator1 __last1, _ForwardIterator2 __first2, | ^~~~~~~~~ /usr/include/c++/14/pstl/glue_algorithm_defs.h:162:1: note: candidate expects 6 arguments, 4 provided
s840505791
p03737
Java
import java.io.OutputStream; import java.io.IOException; import java.io.InputStream; import java.io.PrintWriter; import java.util.InputMismatchException; import java.io.IOException; import java.io.InputStream; /** * Built using CHelper plug-in * Actual solution is at the top * * @author Ashish Karel rasensuriken */ public class Main { public static void main(String[] args) { InputStream inputStream = System.in; OutputStream outputStream = System.out; FastReader in = new FastReader(inputStream); PrintWriter out = new PrintWriter(outputStream); TaskA solver = new TaskA(); solver.solve(1, in, out); out.close(); } static class TaskA { public void solve(int testNumber, FastReader in, PrintWriter out) { String s1 = = in.nextString(); String s2 = in.nextString(); String s3 = in.nextString(); String ans = "" + s1.charAt(0) + s2.charAt(0) + s3.charAt(0); out.println(ans.toUpperCase()); } } static class FastReader { private InputStream stream; private byte[] buf = new byte[1024]; private int curChar; private int pnumChars; private FastReader.SpaceCharFilter filter; public FastReader(InputStream stream) { this.stream = stream; } public int read() { if (pnumChars == -1) { throw new InputMismatchException(); } if (curChar >= pnumChars) { curChar = 0; try { pnumChars = stream.read(buf); } catch (IOException e) { throw new InputMismatchException(); } if (pnumChars <= 0) { return -1; } } return buf[curChar++]; } public String nextString() { int c = read(); while (isSpaceChar(c)) c = read(); StringBuilder res = new StringBuilder(); do { res.appendCodePoint(c); c = read(); } while (!isSpaceChar(c)); return res.toString(); } public boolean isSpaceChar(int c) { if (filter != null) { return filter.isSpaceChar(c); } return isWhitespace(c); } public static boolean isWhitespace(int c) { return c == ' ' || c == '\n' || c == '\r' || c == '\t' || c == -1; } public interface SpaceCharFilter { public boolean isSpaceChar(int ch); } } }
Main.java:28: error: illegal start of expression String s1 = = in.nextString(); ^ 1 error
s887363256
p03737
C++
// #define _CRT_SECURE_NO_WARNINGS // #define _USE_MATH_DEFINES #include <iostream> #include <cstdio> #include <algorithm> #include <string> #include <vector> #include <map> #include <set> #include <stack> #include <cmath> #include <cstdlib> #include <functional> #include <locale> #include <cctype> #include <sstream> #include <iomanip> // 10桁出力 cout << setprecision(10) << double; #include <queue> using namespace std; typedef long long LL; typedef vector<int> VI; typedef vector<VI> VVI; typedef map<int, int> MAPII; typedef multimap<int, char, greater<int> > MuMAPIC; typedef vector<pair<int, int> > VPII; typedef multimap<int, string, greater<int> > MuMIS; typedef pair<int, int> P; typedef pair<int, pair<P, P> > PP; #define MP make_pair #define FAST_IO cin.tie(0); ios::sync_with_stdio(false); #define FOR(i,a,b) for(int i=(a);i<(b);i++) //for gcc (未test) // #define FOREACH_IT(it,c) for(typeof(c)::iterator it=(c).begin(); it!=(c).end(); ++it) //for Visual Studio #define foreach_it(type,it,c) for(type::iterator it=c.begin(),c_end=c.end();it!=c_end;++it) // for Debug. #define DUMP_VVI(b) FOR(i,0,b.size()){FOR(j,0,b[i].size())printf("%d ",b[i][j]);puts("");} #define D_OUT(str,value) if(dbgF){cout<<str<<" : "<<value<<endl;} // 入力をpush_back(d)やarray[d]に使う時に1行で書ける // int INPUT_INT() {int d;cin>>d;return d;} template<class T>T IN() { T d; cin >> d; return d; } // 最大公約数(Greatest Common Divisor) LL gcd(LL a, LL b) { return (b > 0) ? gcd(b, a%b) : a; } // 最小公倍数(Least Common Multiple) LL lcm(LL a, LL b) { return a / gcd(a, b) * b; } // Y年はうるう年か否か bool uruu(LL Y) { return (((Y % 4 == 0 && Y % 100 != 0) || Y % 400 == 0) ? true : false); } int dx[4] = { 0,1,0,-1 }; int dy[4] = { 1,0,-1,0 }; // vector注意 // vec[i][j]の形に入力を入れるとき、vecは初期化してある必要がある. // ------------------- include, typedef, define END. ------------------- int main() { FAST_IO; // for D_OUT(str, value) ... cout<< str <<" : "<< value <<endl; bool dbgF = true; //コードはここから書く. string a, b, c; cin >> a >> b >> c; transform(a.begin(), a.end(), a.begin(), toupper); transform(b.begin(), b.end(), b.begin(), toupper); transform(c.begin(), c.end(), c.begin(), toupper); cout << a[0] << b[0] << c[0] << endl; return 0; }
a.cc: In function 'int main()': a.cc:67:18: error: no matching function for call to 'transform(std::__cxx11::basic_string<char>::iterator, std::__cxx11::basic_string<char>::iterator, std::__cxx11::basic_string<char>::iterator, <unresolved overloaded function type>)' 67 | transform(a.begin(), a.end(), a.begin(), toupper); | ~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ In file included from /usr/include/c++/14/algorithm:61, from a.cc:5: /usr/include/c++/14/bits/stl_algo.h:4209:5: note: candidate: 'template<class _IIter, class _OIter, class _UnaryOperation> _OIter std::transform(_IIter, _IIter, _OIter, _UnaryOperation)' 4209 | transform(_InputIterator __first, _InputIterator __last, | ^~~~~~~~~ /usr/include/c++/14/bits/stl_algo.h:4209:5: note: template argument deduction/substitution failed: a.cc:67:18: note: couldn't deduce template parameter '_UnaryOperation' 67 | transform(a.begin(), a.end(), a.begin(), toupper); | ~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ /usr/include/c++/14/bits/stl_algo.h:4247:5: note: candidate: 'template<class _IIter1, class _IIter2, class _OIter, class _BinaryOperation> _OIter std::transform(_IIter1, _IIter1, _IIter2, _OIter, _BinaryOperation)' 4247 | transform(_InputIterator1 __first1, _InputIterator1 __last1, | ^~~~~~~~~ /usr/include/c++/14/bits/stl_algo.h:4247:5: note: candidate expects 5 arguments, 4 provided In file included from /usr/include/c++/14/algorithm:86: /usr/include/c++/14/pstl/glue_algorithm_defs.h:156:1: note: candidate: 'template<class _ExecutionPolicy, class _ForwardIterator1, class _ForwardIterator2, class _UnaryOperation> __pstl::__internal::__enable_if_execution_policy<_ExecutionPolicy, _ForwardIterator2> std::transform(_ExecutionPolicy&&, _ForwardIterator1, _ForwardIterator1, _ForwardIterator2, _UnaryOperation)' 156 | transform(_ExecutionPolicy&& __exec, _ForwardIterator1 __first, _ForwardIterator1 __last, _ForwardIterator2 __result, | ^~~~~~~~~ /usr/include/c++/14/pstl/glue_algorithm_defs.h:156:1: note: candidate expects 5 arguments, 4 provided /usr/include/c++/14/pstl/glue_algorithm_defs.h:162:1: note: candidate: 'template<class _ExecutionPolicy, class _ForwardIterator1, class _ForwardIterator2, class _ForwardIterator, class _BinaryOperation> __pstl::__internal::__enable_if_execution_policy<_ExecutionPolicy, _ForwardIterator2> std::transform(_ExecutionPolicy&&, _ForwardIterator1, _ForwardIterator1, _ForwardIterator2, _ForwardIterator, _BinaryOperation)' 162 | transform(_ExecutionPolicy&& __exec, _ForwardIterator1 __first1, _ForwardIterator1 __last1, _ForwardIterator2 __first2, | ^~~~~~~~~ /usr/include/c++/14/pstl/glue_algorithm_defs.h:162:1: note: candidate expects 6 arguments, 4 provided a.cc:68:18: error: no matching function for call to 'transform(std::__cxx11::basic_string<char>::iterator, std::__cxx11::basic_string<char>::iterator, std::__cxx11::basic_string<char>::iterator, <unresolved overloaded function type>)' 68 | transform(b.begin(), b.end(), b.begin(), toupper); | ~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ /usr/include/c++/14/bits/stl_algo.h:4209:5: note: candidate: 'template<class _IIter, class _OIter, class _UnaryOperation> _OIter std::transform(_IIter, _IIter, _OIter, _UnaryOperation)' 4209 | transform(_InputIterator __first, _InputIterator __last, | ^~~~~~~~~ /usr/include/c++/14/bits/stl_algo.h:4209:5: note: template argument deduction/substitution failed: a.cc:68:18: note: couldn't deduce template parameter '_UnaryOperation' 68 | transform(b.begin(), b.end(), b.begin(), toupper); | ~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ /usr/include/c++/14/bits/stl_algo.h:4247:5: note: candidate: 'template<class _IIter1, class _IIter2, class _OIter, class _BinaryOperation> _OIter std::transform(_IIter1, _IIter1, _IIter2, _OIter, _BinaryOperation)' 4247 | transform(_InputIterator1 __first1, _InputIterator1 __last1, | ^~~~~~~~~ /usr/include/c++/14/bits/stl_algo.h:4247:5: note: candidate expects 5 arguments, 4 provided /usr/include/c++/14/pstl/glue_algorithm_defs.h:156:1: note: candidate: 'template<class _ExecutionPolicy, class _ForwardIterator1, class _ForwardIterator2, class _UnaryOperation> __pstl::__internal::__enable_if_execution_policy<_ExecutionPolicy, _ForwardIterator2> std::transform(_ExecutionPolicy&&, _ForwardIterator1, _ForwardIterator1, _ForwardIterator2, _UnaryOperation)' 156 | transform(_ExecutionPolicy&& __exec, _ForwardIterator1 __first, _ForwardIterator1 __last, _ForwardIterator2 __result, | ^~~~~~~~~ /usr/include/c++/14/pstl/glue_algorithm_defs.h:156:1: note: candidate expects 5 arguments, 4 provided /usr/include/c++/14/pstl/glue_algorithm_defs.h:162:1: note: candidate: 'template<class _ExecutionPolicy, class _ForwardIterator1, class _ForwardIterator2, class _ForwardIterator, class _BinaryOperation> __pstl::__internal::__enable_if_execution_policy<_ExecutionPolicy, _ForwardIterator2> std::transform(_ExecutionPolicy&&, _ForwardIterator1, _ForwardIterator1, _ForwardIterator2, _ForwardIterator, _BinaryOperation)' 162 | transform(_ExecutionPolicy&& __exec, _ForwardIterator1 __first1, _ForwardIterator1 __last1, _ForwardIterator2 __first2, | ^~~~~~~~~ /usr/include/c++/14/pstl/glue_algorithm_defs.h:162:1: note: candidate expects 6 arguments, 4 provided a.cc:69:18: error: no matching function for call to 'transform(std::__cxx11::basic_string<char>::iterator, std::__cxx11::basic_string<char>::iterator, std::__cxx11::basic_string<char>::iterator, <unresolved overloaded function type>)' 69 | transform(c.begin(), c.end(), c.begin(), toupper); | ~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ /usr/include/c++/14/bits/stl_algo.h:4209:5: note: candidate: 'template<class _IIter, class _OIter, class _UnaryOperation> _OIter std::transform(_IIter, _IIter, _OIter, _UnaryOperation)' 4209 | transform(_InputIterator __first, _InputIterator __last, | ^~~~~~~~~ /usr/include/c++/14/bits/stl_algo.h:4209:5: note: template argument deduction/substitution failed: a.cc:69:18: note: couldn't deduce template parameter '_UnaryOperation' 69 | transform(c.begin(), c.end(), c.begin(), toupper); | ~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ /usr/include/c++/14/bits/stl_algo.h:4247:5: note: candidate: 'template<class _IIter1, class _IIter2, class _OIter, class _BinaryOperation> _OIter std::transform(_IIter1, _IIter1, _IIter2, _OIter, _BinaryOperation)' 4247 | transform(_InputIterator1 __first1, _InputIterator1 __last1, | ^~~~~~~~~ /usr/include/c++/14/bits/stl_algo.h:4247:5: note: candidate expects 5 arguments, 4 provided /usr/include/c++/14/pstl/glue_algorithm_defs.h:156:1: note: candidate: 'template<class _ExecutionPolicy, class _ForwardIterator1, class _ForwardIterator2, class _UnaryOperation> __pstl::__internal::__enable_if_execution_policy<_ExecutionPolicy, _ForwardIterator2> std::transform(_ExecutionPolicy&&, _ForwardIterator1, _ForwardIterator1, _ForwardIterator2, _UnaryOperation)' 156 | transform(_ExecutionPolicy&& __exec, _ForwardIterator1 __first, _ForwardIterator1 __last, _ForwardIterator2 __result, | ^~~~~~~~~ /usr/include/c++/14/pstl/glue_algorithm_defs.h:156:1: note: candidate expects 5 arguments, 4 provided /usr/include/c++/14/pstl/glue_algorithm_defs.h:162:1: note: candidate: 'template<class _ExecutionPolicy, class _ForwardIterator1, class _ForwardIterator2, class _ForwardIterator, class _BinaryOperation> __pstl::__internal::__enable_if_execution_policy<_ExecutionPolicy, _ForwardIterator2> std::transform(_ExecutionPolicy&&, _ForwardIterator1, _ForwardIterator1, _ForwardIterator2, _ForwardIterator, _BinaryOperation)' 162 | transform(_ExecutionPolicy&& __exec, _ForwardIterator1 __first1, _ForwardIterator1 __last1, _ForwardIterator2 __first2, | ^~~~~~~~~ /usr/include/c++/14/pstl/glue_algorithm_defs.h:162:1: note: candidate expects 6 arguments, 4 provided
s167503343
p03738
C++
#include <bits/stdc++.h> using namespace std; int main(){ string a,b; cin>>a>>b; if(a.size()>b.size()) cout<<"GREATER"<<endl; else if(a.size()<b.size()) cout<<"LESS"<<endl; else if(a==b) cout<<"EQUAL"<<endl; else{ for(int i=0;i<a.size();i++){ ll x=stoi(a[i]),y=stoi(b[i]); if(x>y){ cout<<"GREATER"<<endl; break; } else if(x<y){ cout<<"LESS"<<endl; break; } } } }
a.cc: In function 'int main()': a.cc:14:7: error: 'll' was not declared in this scope 14 | ll x=stoi(a[i]),y=stoi(b[i]); | ^~ a.cc:15:10: error: 'x' was not declared in this scope 15 | if(x>y){ | ^ a.cc:15:12: error: 'y' was not declared in this scope 15 | if(x>y){ | ^
s998427418
p03738
C++
#include <bits/stdc++.h> using namespace std; #define endl '\n' #define Opy ios_base::sync_with_stdio(false),cin.tie(0),cout.tie(0) typedef long long ll; int main() { //Opy; /*------------------------------------------------- #ifndef ONLINE_JUDGE freopen("input.txt", "r", stdin); freopen("output.txt", "w", stdout); #endif -------------------------------------------------*/ string A, B; cin>> A>> B; if(A.size() > B.size()) cout<< "GREATER\n"; else if(A.size() > B.size()) cout<< "LESS\n"; else { if(A > B) cout<< "GREATER\n"; else if(A < B) cout<< "LESS\n"; else cout<< "EQUAL\n"; return 0; }
a.cc: In function 'int main()': a.cc:38:2: error: expected '}' at end of input 38 | } | ^ a.cc:11:1: note: to match this '{' 11 | { | ^
s027111903
p03738
C++
#include <bits/stdc++.h> #defint int long long using namespace std; int main() { int A, B; cin >> A >> B; if (A > B) {cout << "GREATER" << endl;} else if (A < B) {cout << "LESS" << endl;} else {cout << "EQUAL" << endl;} }
a.cc:2:2: error: invalid preprocessing directive #defint; did you mean #define? 2 | #defint int long long | ^~~~~~ | define
s715725393
p03738
C++
#include <bits/stdc++.h> #define rep(i,N) for (int i = 0; i < (N); ++i) #define all(v) v.begin(), v.end() using namespace std; using ll = long long; using P = pair<int, int>; const int inf{int(1e9)}; int main(void){ string A, B; cin >> A >> B; if (A.length() > B.length()){ cout << "GREATER" << endl; }else if(A.length() < B.length()){ cout << "LESS" << endl }else{ if (A > B) cout << "GREATER" << endl; else if (A < B) cout << "LESS" << endl; else if (A == B) cout << "EQUAL" << endl; } }
a.cc: In function 'int main()': a.cc:15:27: error: expected ';' before '}' token 15 | cout << "LESS" << endl | ^ | ; 16 | }else{ | ~
s035786148
p03738
C++
int main() { string A, B; cin >> A >> B; if (A.size()> B.size()) { cout << "GREATER" << endl; } else if (A.size() < B.size()) { cout << "LESS" << endl; } else { rep(i, A.size()) { if (A.at(i) > B.at(i)) { cout << "GREATER" << endl; return 0; } else if (A.at(i) < B.at(i)) { cout << "LESS" << endl; return 0; } else { continue; } } cout << "EQUAL" << endl; } return 0; }
a.cc: In function 'int main()': a.cc:2:9: error: 'string' was not declared in this scope 2 | string A, B; | ^~~~~~ a.cc:3:9: error: 'cin' was not declared in this scope 3 | cin >> A >> B; | ^~~ a.cc:3:16: error: 'A' was not declared in this scope 3 | cin >> A >> B; | ^ a.cc:3:21: error: 'B' was not declared in this scope 3 | cin >> A >> B; | ^ a.cc:7:17: error: 'cout' was not declared in this scope 7 | cout << "GREATER" << endl; | ^~~~ a.cc:7:38: error: 'endl' was not declared in this scope 7 | cout << "GREATER" << endl; | ^~~~ a.cc:10:17: error: 'cout' was not declared in this scope 10 | cout << "LESS" << endl; | ^~~~ a.cc:10:35: error: 'endl' was not declared in this scope 10 | cout << "LESS" << endl; | ^~~~ a.cc:13:21: error: 'i' was not declared in this scope 13 | rep(i, A.size()) { | ^ a.cc:13:17: error: 'rep' was not declared in this scope 13 | rep(i, A.size()) { | ^~~ a.cc:27:17: error: 'cout' was not declared in this scope 27 | cout << "EQUAL" << endl; | ^~~~ a.cc:27:36: error: 'endl' was not declared in this scope 27 | cout << "EQUAL" << endl; | ^~~~
s894697327
p03738
C++
#include <bits/stdc++.h> using namespace std; using ll =long long; #define all(v) v.begin(),v.end() int main() { string A,B; cin>>A>>B; if(A.size()>B.size()) { cout<<"GREATER"<<endl; return 0; } else if(A.size()<B.size()) { cout<<"LESS"<<endl; return 0; } for(ll i=0;i<S.size();i++) { if(S[i]>B[i]) { cout<<"GREATER"<<endl; return 0; } else if(S[i]<T[i]) { cout<<"LESS"<<endl; return 0; } } cout<<"EQUAL"<<endl; }
a.cc: In function 'int main()': a.cc:19:16: error: 'S' was not declared in this scope 19 | for(ll i=0;i<S.size();i++) { | ^ a.cc:24:18: error: 'T' was not declared in this scope 24 | else if(S[i]<T[i]) { | ^
s314069628
p03738
C++
#include<bits/stdc++.h> using namespace std; #define int long long #define ar array #define vt vector #define pb push_back #define all(c) (c).begin(), (c).end() #define sz(x) (int)(x).size() #define F_OR(i, a, b, s) for (int i=(a); (s)>0?i<(b):i>(b); i+=(s)) #define F_OR1(e) F_OR(i, 0, e, 1) #define F_OR2(i, e) F_OR(i, 0, e, 1) #define F_OR3(i, b, e) F_OR(i, b, e, 1) #define F_OR4(i, b, e, s) F_OR(i, b, e, s) #define GET5(a, b, c, d, e, ...) e #define F_ORC(...) GET5(__VA_ARGS__, F_OR4, F_OR3, F_OR2, F_OR1) #define FOR(...) F_ORC(__VA_ARGS__)(__VA_ARGS__) #define EACH(x, a) for (auto& x: a) template<class T> bool umin(T &a, const T &b) { return b < a ? a = b, 1 : 0; } template<class T> bool umax(T &a, const T &b) { return a < b ? a = b, 1 : 0; } template<class A> void read(vt<A> &v); template<class A, size_t S> void read(ar<A, S> &a); template<class T> void read(T &x) { cin >> x; } void read(double &d) { string t; read(t); d = stod(t); } void read(long double &d) { string t; read(t); d = stold(t); } template<class H, class... T> void read(H &h, T &... t) { read(h); read(t...); } template<class A> void read(vt<A> &x) { EACH(a, x)read(a); } template<class A, size_t S> void read(array<A, S> &x) { EACH(a, x)read(a); } string to_string(char c) { return string(1, c); } string to_string(bool b) { return b ? "true" : "false"; } string to_string(const char *s) { return string(s); } string to_string(string s) { return s; } string to_string(vt<bool> v) { string res; FOR(sz(v))res += char('0' + v[i]); return res; } template<size_t S> string to_string(bitset<S> b) { string res; FOR(S)res += char('0' + b[i]); return res; } template<class T> string to_string(T v) { bool f = 1; string res; EACH(x, v) { if (!f) res += ' '; f = 0; res += to_string(x); } return res; } template<class A> void write(A x) { cout << to_string(x); } template<class H, class... T> void write(const H &h, const T &... t) { write(h); write(t...); } void print() { write("\n"); } template<class H, class... T> void print(const H &h, const T &... t) { write(h); if (sizeof...(t)) write(' '); print(t...); } template<class T, class U> void vti(vt<T> &v, U x, size_t n) { v = vt<T>(n, x); } template<class T, class U> void vti(vt<T> &v, U x, size_t n, size_t m...) { v = vt<T>(n); EACH(a, v)vti(a, x, m); } void solve() { string a, b; read(a, b); if (a.size() > b.size()) { print("GREATER"); } else if (a.size() < b.size()) { print("LESS"); } else{ FOR(a.size()) { if (a[i] > b[i]) { print("GREATER"); return; } else if (a[i] < b[i]) { print("LESS"); return; } } print("EQUAL") } } int32_t main() { ios::sync_with_stdio(0); cin.tie(0); int tt = 1; //read(tt); FOR(tt) { solve(); } }
a.cc: In function 'void solve()': a.cc:167:23: error: expected ';' before '}' token 167 | print("EQUAL") | ^ | ; 168 | } | ~
s062612453
p03738
C++
#include <bits/stdc++.h> using namespace std; #define inf 1072114514 #define llinf 4154118101919364364 #define mod 1000000007 #define pi 3.1415926535897932384 int round(int a,int b){if((a%b)*2 >= b){return (a/b)+1;}return a/b;} int gcd(int a,int b){int c;while(b!=0){c=a%b;a=b;b=c;}return a;} //最大公約数 int lcm(int a,int b){int c=gcd(a,b);a/=c;return a*b;} //最小公倍数 int nCr(int a,int b){int i,r=1;for(i=1;i<=b;i++){r*=(a+1-i);r/=i;}return r;} //コンビネーション int nHr(int a,int b){return nCr(a+b-1,b);} // 重複組み合わせ int fact(int a){int i,r=1;for(i=1;i<=a;i++){r*=i;}return r;} //階乗 int pow(int a,int b){int i,r=1;for(i=1;i<=b;i++){r*=a;}return r;} // a~bまでの階乗 int dsum(int x){int r=0;while(x){r+=(x%10);x/=10;}return r;} //数字の各位の和 int dsumb(int x,int b){int r=0;while(x){r+=(x%b);x/=b;}return r;} // b進数の各位の和? int sankaku(int x){return ((1+x)*x)/2;} //三角数 xまでの和 //以下long long ver long long llmax(long long a,long long b){if(a>b){return a;}return b;} long long llmin(long long a,long long b){if(a<b){return a;}return b;} long long llzt(long long a,long long b){return llmax(a,b)-llmin(a,b);} long long llround(long long a,long long b){if((a%b)*2 >= b){return (a/b)+1;}return a/b;} long long llceil(long long a,long long b){if(a%b==0){return a/b;}return (a/b)+1;} long long llgcd(long long a,long long b){long long c;while(b!=0){c=a%b;a=b;b=c;}return a;} long long lllcm(long long a,long long b){long long c=llgcd(a,b);a/=c;return a*b;} long long llnCr(long long a,long long b){long long i,r=1;for(i=1;i<=b;i++){r*=(a+1-i);r/=i;}return r;} long long llnHr(long long a,long long b){return llnCr(a+b-1,b);} long long llfact(long long a){long long i,r=1;for(i=1;i<=a;i++){r*=i;}return r;} long long llpow(long long a,long long b){long long i,r=1;for(i=1;i<=b;i++){r*=a;}return r;} long long lldsum(long long x){long long r=0;while(x){r+=(x%10);x/=10;}return r;} long long lldsumb(long long x,long long b){long long r=0;while(x){r+=(x%b);x/=b;}return r;} long long llsankaku(long long x){return ((1+x)*x)/2;} //double double dbmax(double a,double b){if(a>b){return a;}return b;} double dbmin(double a,double b){if(a<b){return a;}return b;} double dbzt(double a,double b){return dbmax(a,b)-dbmin(a,b);} typedef pair<int, int> ii; typedef long long ll; typedef vector<ll> vll; typedef pair<ll,ll> pll; #define forr(i,a,b) for(int i=(a); i<(b); i++) #define clean(arr,val) memset(arr,val,sizeof(arr)) #define forn(i,n) forr(i,0,n) #define PB push_back typedef vector<int> vi; typedef vector<ii> vii; typedef vector<pll> vpll; /*CODE START HERE*/ int main() { string a, b; cin >> a >> b; if (a.size()< b.size()){ cout << "LESS" <<endl; }else if ( a.size() > b.size()){ cout << "GREATER" << endl; }else { cout << ( a<b ? "LESS" : a==B ? "EQUAL" : "GREATER") << endl; } }
a.cc: In function 'int main()': a.cc:64:33: error: 'B' was not declared in this scope 64 | cout << ( a<b ? "LESS" : a==B ? "EQUAL" : "GREATER") << endl; | ^
s032567789
p03738
C++
#include <bits/stdc++.h> using namespace std; #define inf 1072114514 #define llinf 4154118101919364364 #define mod 1000000007 #define pi 3.1415926535897932384 int round(int a,int b){if((a%b)*2 >= b){return (a/b)+1;}return a/b;} int gcd(int a,int b){int c;while(b!=0){c=a%b;a=b;b=c;}return a;} //最大公約数 int lcm(int a,int b){int c=gcd(a,b);a/=c;return a*b;} //最小公倍数 int nCr(int a,int b){int i,r=1;for(i=1;i<=b;i++){r*=(a+1-i);r/=i;}return r;} //コンビネーション int nHr(int a,int b){return nCr(a+b-1,b);} // 重複組み合わせ int fact(int a){int i,r=1;for(i=1;i<=a;i++){r*=i;}return r;} //階乗 int pow(int a,int b){int i,r=1;for(i=1;i<=b;i++){r*=a;}return r;} // a~bまでの階乗 int dsum(int x){int r=0;while(x){r+=(x%10);x/=10;}return r;} //数字の各位の和 int dsumb(int x,int b){int r=0;while(x){r+=(x%b);x/=b;}return r;} // b進数の各位の和? int sankaku(int x){return ((1+x)*x)/2;} //三角数 xまでの和 //以下long long ver long long llmax(long long a,long long b){if(a>b){return a;}return b;} long long llmin(long long a,long long b){if(a<b){return a;}return b;} long long llzt(long long a,long long b){return llmax(a,b)-llmin(a,b);} long long llround(long long a,long long b){if((a%b)*2 >= b){return (a/b)+1;}return a/b;} long long llceil(long long a,long long b){if(a%b==0){return a/b;}return (a/b)+1;} long long llgcd(long long a,long long b){long long c;while(b!=0){c=a%b;a=b;b=c;}return a;} long long lllcm(long long a,long long b){long long c=llgcd(a,b);a/=c;return a*b;} long long llnCr(long long a,long long b){long long i,r=1;for(i=1;i<=b;i++){r*=(a+1-i);r/=i;}return r;} long long llnHr(long long a,long long b){return llnCr(a+b-1,b);} long long llfact(long long a){long long i,r=1;for(i=1;i<=a;i++){r*=i;}return r;} long long llpow(long long a,long long b){long long i,r=1;for(i=1;i<=b;i++){r*=a;}return r;} long long lldsum(long long x){long long r=0;while(x){r+=(x%10);x/=10;}return r;} long long lldsumb(long long x,long long b){long long r=0;while(x){r+=(x%b);x/=b;}return r;} long long llsankaku(long long x){return ((1+x)*x)/2;} //double double dbmax(double a,double b){if(a>b){return a;}return b;} double dbmin(double a,double b){if(a<b){return a;}return b;} double dbzt(double a,double b){return dbmax(a,b)-dbmin(a,b);} typedef pair<int, int> ii; typedef long long ll; typedef vector<ll> vll; typedef pair<ll,ll> pll; #define forr(i,a,b) for(int i=(a); i<(b); i++) #define clean(arr,val) memset(arr,val,sizeof(arr)) #define forn(i,n) forr(i,0,n) #define PB push_back typedef vector<int> vi; typedef vector<ii> vii; typedef vector<pll> vpll; /*CODE START HERE*/ int main() { string a, b; cin >> a >> b; if (a.size()< b.size()){ cout << "LESS" <<endl; }else if ( a.size() > b.size()){ cout << "GREATER" << endl; }else { cout << ( a<b ? "LESS" : a==B ? "EQUAL" : "GREATER") << endl; } } }
a.cc: In function 'int main()': a.cc:64:33: error: 'B' was not declared in this scope 64 | cout << ( a<b ? "LESS" : a==B ? "EQUAL" : "GREATER") << endl; | ^ a.cc: At global scope: a.cc:67:5: error: expected declaration before '}' token 67 | } | ^
s325639481
p03738
C++
#include <bits/stdc++.h> using namespace std; template <typename T> bool PN(T x) { if (x <= 1) return false; if (x == 2) return true; for (int i = 2; i < sqrt(x) + 1; i++) if (x % i == 0) return false; return true; } const long long MOD = 1e9+7; void solve() { string a, b; cin >> a >> b; int asize = a.size(), bsize = b.size(); if(asize > bsize) cout << "GREATER" << endl; else if(asize < bsize) cout << "LESS" << endl; else cout << "EQUAL" << endl; int i = 0; while(1){ if(stoi(a[i]) > stoi(b[i])) { cout << "GREATER" << endl; return; } else if(stoi(a[i]) < stoi(b[i])){ cout <<"LESS" << endl; return; } else { i++; } } } int main() { solve(); return 0; }
a.cc: In function 'void solve()': a.cc:27:12: error: no matching function for call to 'stoi(__gnu_cxx::__alloc_traits<std::allocator<char>, char>::value_type&)' 27 | if(stoi(a[i]) > stoi(b[i])) { | ~~~~^~~~~~ In file included from /usr/include/c++/14/string:54, from /usr/include/c++/14/bitset:52, from /usr/include/x86_64-linux-gnu/c++/14/bits/stdc++.h:52, from a.cc:1: /usr/include/c++/14/bits/basic_string.h:4164:3: note: candidate: 'int std::__cxx11::stoi(const std::string&, std::size_t*, int)' 4164 | stoi(const string& __str, size_t* __idx = 0, int __base = 10) | ^~~~ /usr/include/c++/14/bits/basic_string.h:4164:22: note: no known conversion for argument 1 from '__gnu_cxx::__alloc_traits<std::allocator<char>, char>::value_type' {aka 'char'} to 'const std::string&' {aka 'const std::__cxx11::basic_string<char>&'} 4164 | stoi(const string& __str, size_t* __idx = 0, int __base = 10) | ~~~~~~~~~~~~~~^~~~~ /usr/include/c++/14/bits/basic_string.h:4432:3: note: candidate: 'int std::__cxx11::stoi(const std::wstring&, std::size_t*, int)' 4432 | stoi(const wstring& __str, size_t* __idx = 0, int __base = 10) | ^~~~ /usr/include/c++/14/bits/basic_string.h:4432:23: note: no known conversion for argument 1 from '__gnu_cxx::__alloc_traits<std::allocator<char>, char>::value_type' {aka 'char'} to 'const std::wstring&' {aka 'const std::__cxx11::basic_string<wchar_t>&'} 4432 | stoi(const wstring& __str, size_t* __idx = 0, int __base = 10) | ~~~~~~~~~~~~~~~^~~~~ a.cc:27:25: error: no matching function for call to 'stoi(__gnu_cxx::__alloc_traits<std::allocator<char>, char>::value_type&)' 27 | if(stoi(a[i]) > stoi(b[i])) { | ~~~~^~~~~~ /usr/include/c++/14/bits/basic_string.h:4164:3: note: candidate: 'int std::__cxx11::stoi(const std::string&, std::size_t*, int)' 4164 | stoi(const string& __str, size_t* __idx = 0, int __base = 10) | ^~~~ /usr/include/c++/14/bits/basic_string.h:4164:22: note: no known conversion for argument 1 from '__gnu_cxx::__alloc_traits<std::allocator<char>, char>::value_type' {aka 'char'} to 'const std::string&' {aka 'const std::__cxx11::basic_string<char>&'} 4164 | stoi(const string& __str, size_t* __idx = 0, int __base = 10) | ~~~~~~~~~~~~~~^~~~~ /usr/include/c++/14/bits/basic_string.h:4432:3: note: candidate: 'int std::__cxx11::stoi(const std::wstring&, std::size_t*, int)' 4432 | stoi(const wstring& __str, size_t* __idx = 0, int __base = 10) | ^~~~ /usr/include/c++/14/bits/basic_string.h:4432:23: note: no known conversion for argument 1 from '__gnu_cxx::__alloc_traits<std::allocator<char>, char>::value_type' {aka 'char'} to 'const std::wstring&' {aka 'const std::__cxx11::basic_string<wchar_t>&'} 4432 | stoi(const wstring& __str, size_t* __idx = 0, int __base = 10) | ~~~~~~~~~~~~~~~^~~~~ a.cc:30:19: error: no matching function for call to 'stoi(__gnu_cxx::__alloc_traits<std::allocator<char>, char>::value_type&)' 30 | } else if(stoi(a[i]) < stoi(b[i])){ | ~~~~^~~~~~ /usr/include/c++/14/bits/basic_string.h:4164:3: note: candidate: 'int std::__cxx11::stoi(const std::string&, std::size_t*, int)' 4164 | stoi(const string& __str, size_t* __idx = 0, int __base = 10) | ^~~~ /usr/include/c++/14/bits/basic_string.h:4164:22: note: no known conversion for argument 1 from '__gnu_cxx::__alloc_traits<std::allocator<char>, char>::value_type' {aka 'char'} to 'const std::string&' {aka 'const std::__cxx11::basic_string<char>&'} 4164 | stoi(const string& __str, size_t* __idx = 0, int __base = 10) | ~~~~~~~~~~~~~~^~~~~ /usr/include/c++/14/bits/basic_string.h:4432:3: note: candidate: 'int std::__cxx11::stoi(const std::wstring&, std::size_t*, int)' 4432 | stoi(const wstring& __str, size_t* __idx = 0, int __base = 10) | ^~~~ /usr/include/c++/14/bits/basic_string.h:4432:23: note: no known conversion for argument 1 from '__gnu_cxx::__alloc_traits<std::allocator<char>, char>::value_type' {aka 'char'} to 'const std::wstring&' {aka 'const std::__cxx11::basic_string<wchar_t>&'} 4432 | stoi(const wstring& __str, size_t* __idx = 0, int __base = 10) | ~~~~~~~~~~~~~~~^~~~~ a.cc:30:32: error: no matching function for call to 'stoi(__gnu_cxx::__alloc_traits<std::allocator<char>, char>::value_type&)' 30 | } else if(stoi(a[i]) < stoi(b[i])){ | ~~~~^~~~~~ /usr/include/c++/14/bits/basic_string.h:4164:3: note: candidate: 'int std::__cxx11::stoi(const std::string&, std::size_t*, int)' 4164 | stoi(const string& __str, size_t* __idx = 0, int __base = 10) | ^~~~ /usr/include/c++/14/bits/basic_string.h:4164:22: note: no known conversion for argument 1 from '__gnu_cxx::__alloc_traits<std::allocator<char>, char>::value_type' {aka 'char'} to 'const std::string&' {aka 'const std::__cxx11::basic_string<char>&'} 4164 | stoi(const string& __str, size_t* __idx = 0, int __base = 10) | ~~~~~~~~~~~~~~^~~~~ /usr/include/c++/14/bits/basic_string.h:4432:3: note: candidate: 'int std::__cxx11::stoi(const std::wstring&, std::size_t*, int)' 4432 | stoi(const wstring& __str, size_t* __idx = 0, int __base = 10) | ^~~~ /usr/include/c++/14/bits/basic_string.h:4432:23: note: no known conversion for argument 1 from '__gnu_cxx::__alloc_traits<std::allocator<char>, char>::value_type' {aka 'char'} to 'const std::wstring&' {aka 'const std::__cxx11::basic_string<wchar_t>&'} 4432 | stoi(const wstring& __str, size_t* __idx = 0, int __base = 10) | ~~~~~~~~~~~~~~~^~~~~
s348559866
p03738
C++
#include <bits/stdc++.h> using namespace std; template <typename T> bool PN(T x) { if (x <= 1) return false; if (x == 2) return true; for (int i = 2; i < sqrt(x) + 1; i++) if (x % i == 0) return false; return true; } const long long MOD = 1e9+7; void solve() { string a, b; cin >> a >> b; int asize = a.size(), bsize = b.size(); if(asize > bsize) cout << "GREATER" << endl; else if(asize < bsize) cout << "LESS" << endl; else cout << "EQUAL" << endl; int i = 0; while(1){ if(stoi(a[i]) > stoi(b[i])) { cout << "GREATER" << endl; return; } else if(stoi(a[i]) < stoi(b[i])){ cout <<"LESS" << endl; return; } else { i++; } } } int main() { solve(); return 0; }
a.cc: In function 'void solve()': a.cc:27:12: error: no matching function for call to 'stoi(__gnu_cxx::__alloc_traits<std::allocator<char>, char>::value_type&)' 27 | if(stoi(a[i]) > stoi(b[i])) { | ~~~~^~~~~~ In file included from /usr/include/c++/14/string:54, from /usr/include/c++/14/bitset:52, from /usr/include/x86_64-linux-gnu/c++/14/bits/stdc++.h:52, from a.cc:1: /usr/include/c++/14/bits/basic_string.h:4164:3: note: candidate: 'int std::__cxx11::stoi(const std::string&, std::size_t*, int)' 4164 | stoi(const string& __str, size_t* __idx = 0, int __base = 10) | ^~~~ /usr/include/c++/14/bits/basic_string.h:4164:22: note: no known conversion for argument 1 from '__gnu_cxx::__alloc_traits<std::allocator<char>, char>::value_type' {aka 'char'} to 'const std::string&' {aka 'const std::__cxx11::basic_string<char>&'} 4164 | stoi(const string& __str, size_t* __idx = 0, int __base = 10) | ~~~~~~~~~~~~~~^~~~~ /usr/include/c++/14/bits/basic_string.h:4432:3: note: candidate: 'int std::__cxx11::stoi(const std::wstring&, std::size_t*, int)' 4432 | stoi(const wstring& __str, size_t* __idx = 0, int __base = 10) | ^~~~ /usr/include/c++/14/bits/basic_string.h:4432:23: note: no known conversion for argument 1 from '__gnu_cxx::__alloc_traits<std::allocator<char>, char>::value_type' {aka 'char'} to 'const std::wstring&' {aka 'const std::__cxx11::basic_string<wchar_t>&'} 4432 | stoi(const wstring& __str, size_t* __idx = 0, int __base = 10) | ~~~~~~~~~~~~~~~^~~~~ a.cc:27:25: error: no matching function for call to 'stoi(__gnu_cxx::__alloc_traits<std::allocator<char>, char>::value_type&)' 27 | if(stoi(a[i]) > stoi(b[i])) { | ~~~~^~~~~~ /usr/include/c++/14/bits/basic_string.h:4164:3: note: candidate: 'int std::__cxx11::stoi(const std::string&, std::size_t*, int)' 4164 | stoi(const string& __str, size_t* __idx = 0, int __base = 10) | ^~~~ /usr/include/c++/14/bits/basic_string.h:4164:22: note: no known conversion for argument 1 from '__gnu_cxx::__alloc_traits<std::allocator<char>, char>::value_type' {aka 'char'} to 'const std::string&' {aka 'const std::__cxx11::basic_string<char>&'} 4164 | stoi(const string& __str, size_t* __idx = 0, int __base = 10) | ~~~~~~~~~~~~~~^~~~~ /usr/include/c++/14/bits/basic_string.h:4432:3: note: candidate: 'int std::__cxx11::stoi(const std::wstring&, std::size_t*, int)' 4432 | stoi(const wstring& __str, size_t* __idx = 0, int __base = 10) | ^~~~ /usr/include/c++/14/bits/basic_string.h:4432:23: note: no known conversion for argument 1 from '__gnu_cxx::__alloc_traits<std::allocator<char>, char>::value_type' {aka 'char'} to 'const std::wstring&' {aka 'const std::__cxx11::basic_string<wchar_t>&'} 4432 | stoi(const wstring& __str, size_t* __idx = 0, int __base = 10) | ~~~~~~~~~~~~~~~^~~~~ a.cc:30:19: error: no matching function for call to 'stoi(__gnu_cxx::__alloc_traits<std::allocator<char>, char>::value_type&)' 30 | } else if(stoi(a[i]) < stoi(b[i])){ | ~~~~^~~~~~ /usr/include/c++/14/bits/basic_string.h:4164:3: note: candidate: 'int std::__cxx11::stoi(const std::string&, std::size_t*, int)' 4164 | stoi(const string& __str, size_t* __idx = 0, int __base = 10) | ^~~~ /usr/include/c++/14/bits/basic_string.h:4164:22: note: no known conversion for argument 1 from '__gnu_cxx::__alloc_traits<std::allocator<char>, char>::value_type' {aka 'char'} to 'const std::string&' {aka 'const std::__cxx11::basic_string<char>&'} 4164 | stoi(const string& __str, size_t* __idx = 0, int __base = 10) | ~~~~~~~~~~~~~~^~~~~ /usr/include/c++/14/bits/basic_string.h:4432:3: note: candidate: 'int std::__cxx11::stoi(const std::wstring&, std::size_t*, int)' 4432 | stoi(const wstring& __str, size_t* __idx = 0, int __base = 10) | ^~~~ /usr/include/c++/14/bits/basic_string.h:4432:23: note: no known conversion for argument 1 from '__gnu_cxx::__alloc_traits<std::allocator<char>, char>::value_type' {aka 'char'} to 'const std::wstring&' {aka 'const std::__cxx11::basic_string<wchar_t>&'} 4432 | stoi(const wstring& __str, size_t* __idx = 0, int __base = 10) | ~~~~~~~~~~~~~~~^~~~~ a.cc:30:32: error: no matching function for call to 'stoi(__gnu_cxx::__alloc_traits<std::allocator<char>, char>::value_type&)' 30 | } else if(stoi(a[i]) < stoi(b[i])){ | ~~~~^~~~~~ /usr/include/c++/14/bits/basic_string.h:4164:3: note: candidate: 'int std::__cxx11::stoi(const std::string&, std::size_t*, int)' 4164 | stoi(const string& __str, size_t* __idx = 0, int __base = 10) | ^~~~ /usr/include/c++/14/bits/basic_string.h:4164:22: note: no known conversion for argument 1 from '__gnu_cxx::__alloc_traits<std::allocator<char>, char>::value_type' {aka 'char'} to 'const std::string&' {aka 'const std::__cxx11::basic_string<char>&'} 4164 | stoi(const string& __str, size_t* __idx = 0, int __base = 10) | ~~~~~~~~~~~~~~^~~~~ /usr/include/c++/14/bits/basic_string.h:4432:3: note: candidate: 'int std::__cxx11::stoi(const std::wstring&, std::size_t*, int)' 4432 | stoi(const wstring& __str, size_t* __idx = 0, int __base = 10) | ^~~~ /usr/include/c++/14/bits/basic_string.h:4432:23: note: no known conversion for argument 1 from '__gnu_cxx::__alloc_traits<std::allocator<char>, char>::value_type' {aka 'char'} to 'const std::wstring&' {aka 'const std::__cxx11::basic_string<wchar_t>&'} 4432 | stoi(const wstring& __str, size_t* __idx = 0, int __base = 10) | ~~~~~~~~~~~~~~~^~~~~
s929766486
p03738
C++
#include <bits/stdc++.h> using namespace std; int main() { string a ,b; cin >> a >> b; if ( a.size() == b.size()){ cout << (a>b ?"LESS" : a==b ?"EQUAL" : "GREATER") << endl; }else if(a.size() > b.size()){ cout << "GREATER" << endl; }else if(a.size() < b.size()){ cout << "LESS" << ensl; } }
a.cc: In function 'int main()': a.cc:13:25: error: 'ensl' was not declared in this scope 13 | cout << "LESS" << ensl; | ^~~~
s118883728
p03738
C++
#include <bits/stdc++.h> using namespace std; int main() { string a ,b; cin >> a >> b; if ( a.size() == b.size()){ cout << (a>b ?"LESS" : a==b ?"EQUAL" : "GREATER") << endl; }else (a.size() > b.size()){ cout << "GREATER" << endl; }else (a.size() < b.size()){ cout << "LESS" << ensl; } }
a.cc: In function 'int main()': a.cc:10:30: error: expected ';' before '{' token 10 | }else (a.size() > b.size()){ | ^ | ; a.cc:12:4: error: 'else' without a previous 'if' 12 | }else (a.size() < b.size()){ | ^~~~ a.cc:12:30: error: expected ';' before '{' token 12 | }else (a.size() < b.size()){ | ^ | ;
s345262626
p03738
C++
#include <bits/stdc++.h> using namespace std; int main() { string a ,b; cin >> a >> b; if ( a.size() == b.size(){ cout << (a>b ?"LESS" : a==b ?"EQUAL" : "GREATER") << endl; }else (a.size() > b.size()){ cout << "GREATER" << endl; }else (a.size() < b.size()){ cout << "LESS" << ensl; } }
a.cc: In function 'int main()': a.cc:7:28: error: expected ')' before '{' token 7 | if ( a.size() == b.size(){ | ~ ^ | ) a.cc:15:1: error: expected primary-expression before '}' token 15 | } | ^
s605871939
p03738
C++
#include <bits/stdc++.h> using namespace std; int main() { string a, b; cin >> a >> b; if (a.size() > b.size()) cout << "GREATER"; else if (a.size() < b.size()) cout << "LESS"; else { bool fin = false; for (int i = 0; i < a.size(); i++) { if (a[i] > b[i]) { cout << "GREATER"; fin = true; break; } else if (a[i] < b[i]) { cout << "LESS"; fin = true; break; } } if (!fin) cout << "EQUAL"; }
a.cc: In function 'int main()': a.cc:30:2: error: expected '}' at end of input 30 | } | ^ a.cc:4:12: note: to match this '{' 4 | int main() { | ^
s632282775
p03738
C++
#include <bits/stdc++.h> #define rep(i,n) for (int i=0; i<(int)(n); i++) #define REP(i,m,n) for(ll i=(ll)(m);i<(ll)(n);i++) using namespace std; using ll = long long; using P = pair<int, int>; int main() { string a, b; cin >> a >> b; int an = a.size(), bn = b.size(); string ans = "EQUAL"; if (an > bn) { ans = "GREATER"; } else if (an < bn) { ans = "LESS"; } else if (an == bn) { if (a > b) ans = "GREATER"; else if (a < b) ans = "LESS"; } cout << ans << endl; return 0; } ~
a.cc:23:2: error: expected class-name at end of input 23 | ~ | ^
s445241069
p03738
Java
import java.util.Scanner; public class Mainv { public static void main(String[] args) { Scanner sc = new Scanner(System.in); String a = sc.next(); String b = sc.next(); int ans = 0; //1がaが大きい、2はbが大きい、0は同じ if(a.length() > b.length()) { ans = 1; }else if(a.length() < b.length()) { ans = 2; }else { for (int i = 0; i < a.length(); i++) { if (a.charAt(i) > b.charAt(i)) { ans = 1; break; }else if (a.charAt(i) < b.charAt(i)) { ans = 2; break; } } } if(ans == 1) { System.out.println("GREATER"); }else if(ans == 2) { System.out.println("LESS"); }else { System.out.println("EQUAL"); } sc.close(); } }
Main.java:2: error: class Mainv is public, should be declared in a file named Mainv.java public class Mainv { ^ 1 error
s389765442
p03738
C++
#include <iostream> using namespace std; string magnitude(string & x, string & y) { if( x.size() > y.size() ) return "GREATER"; else if( x.size() < y.size() ) return "LESS"; else{ for(int i = 0; i < x.size(); i++) if( x[i] > y[i] ) return "GREATER"; else ( x[i] < y[i] ) return "LESS"; return "EQUAL"; } } int main() { string a, b; cin >> a >> b; cout << magnitude(a,b); return 0; }
a.cc: In function 'std::string magnitude(std::string&, std::string&)': a.cc:13:27: error: expected ';' before 'return' 13 | else ( x[i] < y[i] ) | ^ | ; 14 | return "LESS"; | ~~~~~~
s883640273
p03738
C++
#include <iostream> using namespace std; string magnitude(string & x, string & y) { if( x.size() > y.size() ) return "GREATER"; else if( x.size() < y.size() ) return "LESS"; else{ for(int i = 0; i < x.size(); i++) if( x[i] > y[i] ) return "GREATER"; else ( x[i] < y[i] ) return "LESS"; return "EQUAL"; } int main() { string a, b; cin >> a >> b; cout << magnitude(a,b); return 0; }
a.cc: In function 'std::string magnitude(std::string&, std::string&)': a.cc:13:27: error: expected ';' before 'return' 13 | else ( x[i] < y[i] ) | ^ | ; 14 | return "LESS"; | ~~~~~~ a.cc:18:9: warning: empty parentheses were disambiguated as a function declaration [-Wvexing-parse] 18 | int main() | ^~ a.cc:18:9: note: remove parentheses to default-initialize a variable 18 | int main() | ^~ | -- a.cc:18:9: note: or replace parentheses with braces to value-initialize a variable a.cc:19:1: error: a function-definition is not allowed here before '{' token 19 | { | ^ a.cc:24:2: error: expected '}' at end of input 24 | } | ^ a.cc:4:1: note: to match this '{' 4 | { | ^
s104188972
p03738
C++
#include<bits/stdc++.h> using namespace std; int main() { int a,b; cin>>a>>b; if(a>b) { cout<<"GREATER"; } else if(a<b) { cout<<"LESS"; } else{ cout<<"EQUAL; } }
a.cc:16:19: warning: missing terminating " character 16 | cout<<"EQUAL; | ^ a.cc:16:19: error: missing terminating " character 16 | cout<<"EQUAL; | ^~~~~~~ a.cc: In function 'int main()': a.cc:17:9: error: expected primary-expression before '}' token 17 | } | ^
s825264762
p03738
C++
#include <bits/stdc++.h> #include <boost/multiprecision/cpp_int.cpp> #define rep(i,n)for(long long i=0;i<(long long)(n);i++) #define all(a) a.begin(), a.end() using namespace std; typedef long long ll; typedef unsigned long long ull; typedef pair<ll, ll> P; template<class T> inline bool chmax(T& a, T b) { if (a < b) { a = b; return true; } return false; } template<class T> inline bool chmin(T& a, T b) { if (a > b) { a = b; return true; } return false; } const ll MOD=1e9+7; const ll INF=1e18; const int MAX=510000; const double pi=acos(-1); int dx[8] = {1,0,-1,0,1,1,-1,-1}; int dy[8] = {0,1,0,-1,-1,1,1,-1}; // int d[13]={0,31,28,31,30,31,30,31,31,30,31,30,31}; int main(){ boost::multiprecision::cpp_int a,b; std:: cin >> a >> b; if(a>b) cout << "GREATER" << endl; else if(a<b) cout << "LESS" << endl; else cout << "EQUAL" << endl; return 0; }
a.cc:2:10: fatal error: boost/multiprecision/cpp_int.cpp: No such file or directory 2 | #include <boost/multiprecision/cpp_int.cpp> | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ compilation terminated.
s685608174
p03738
C++
#include <bits/stdc++.h> #include <boost/multiprecision/cpp_int.cpp> #define rep(i,n)for(long long i=0;i<(long long)(n);i++) #define all(a) a.begin(), a.end() using namespace std; typedef long long ll; typedef unsigned long long ull; typedef pair<ll, ll> P; template<class T> inline bool chmax(T& a, T b) { if (a < b) { a = b; return true; } return false; } template<class T> inline bool chmin(T& a, T b) { if (a > b) { a = b; return true; } return false; } const ll MOD=1e9+7; const ll INF=1e18; const int MAX=510000; const double pi=acos(-1); int dx[8] = {1,0,-1,0,1,1,-1,-1}; int dy[8] = {0,1,0,-1,-1,1,1,-1}; // int d[13]={0,31,28,31,30,31,30,31,31,30,31,30,31}; int main(){ cin.tie(0); ios::sync_with_stdio(false); boost::multiprecision::cpp_int a,b; cin >> a >> b; if(a>b) cout << "GREATER" << endl; else if(a<b) cout << "LESS" << endl; else cout << "EQUAL" << endl; return 0; }
a.cc:2:10: fatal error: boost/multiprecision/cpp_int.cpp: No such file or directory 2 | #include <boost/multiprecision/cpp_int.cpp> | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ compilation terminated.
s844179486
p03738
C++
#include <bits/stdc++.h> #include <boost/multiprecision/cpp_int.cpp> #define rep(i,n)for(long long i=0;i<(long long)(n);i++) #define all(a) a.begin(), a.end() using namespace std; typedef long long ll; typedef unsigned long long ull; typedef pair<ll, ll> P; template<class T> inline bool chmax(T& a, T b) { if (a < b) { a = b; return true; } return false; } template<class T> inline bool chmin(T& a, T b) { if (a > b) { a = b; return true; } return false; } const ll MOD=1e9+7; const ll INF=1e18; const int MAX=510000; const double pi=acos(-1); int dx[8] = {1,0,-1,0,1,1,-1,-1}; int dy[8] = {0,1,0,-1,-1,1,1,-1}; // int d[13]={0,31,28,31,30,31,30,31,31,30,31,30,31}; int main(){ cin.tie(0); ios::sync_with_stdio(false); cpp_int a,b; cin >> a >> b; if(a>b) cout << "GREATER" << endl; else if(a<b) cout << "LESS" << endl; else cout << "EQUAL" << endl; return 0; }
a.cc:2:10: fatal error: boost/multiprecision/cpp_int.cpp: No such file or directory 2 | #include <boost/multiprecision/cpp_int.cpp> | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ compilation terminated.
s968115346
p03738
C++
#include <bits/stdc++.h> using namespace std; int main() { long double A, B; cin >> A >> B; cout << ((A > B) ? "GREATER" ? (A < B) ? "LESS" : "EQUAL") << "\n"; }
a.cc: In function 'int main()': a.cc:7:60: error: expected ':' before ')' token 7 | cout << ((A > B) ? "GREATER" ? (A < B) ? "LESS" : "EQUAL") << "\n"; | ^ | : a.cc:7:60: error: expected primary-expression before ')' token a.cc:7:60: error: expected ':' before ')' token 7 | cout << ((A > B) ? "GREATER" ? (A < B) ? "LESS" : "EQUAL") << "\n"; | ^ | : a.cc:7:60: error: expected primary-expression before ')' token
s736458616
p03738
C++
#include <bits/stdc++.h> #include<boost/multiprecision/cpp_int.hpp> int main(){ boost::multiprecision::cpp_int::cpp_int A,B; std::cin>>A>>B; if(A>B)std::cout<<"GREATER"; else if(A<B)std::cout<<"LESS"; else std::cout<<"EQUAL"; }
a.cc:2:9: fatal error: boost/multiprecision/cpp_int.hpp: No such file or directory 2 | #include<boost/multiprecision/cpp_int.hpp> | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ compilation terminated.
s058881645
p03738
C++
#include <bits/stdc++.h> #include<boost/multiprecision/cpp_int.hpp> int main(){ boost::multiprecision::cpp_int::cpp_int A,B; std::cin>>A>>B; if(A>B)std::cout<<"GREATER"; else if(A<B)std::cout<<"LESS; else std::cout<<"EQUAL"; }
a.cc:2:9: fatal error: boost/multiprecision/cpp_int.hpp: No such file or directory 2 | #include<boost/multiprecision/cpp_int.hpp> | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ compilation terminated.
s442601262
p03738
C++
#include<iostream> using namespace std; int main(){ string a,b; cin >> a >> b; if(a == b)cout << "EQUAL" << enld; if(a > b)cout << "GREATER" << endl; if(a < b)cout << "LESS" << endl; }
a.cc: In function 'int main()': a.cc:5:32: error: 'enld' was not declared in this scope 5 | if(a == b)cout << "EQUAL" << enld; | ^~~~
s051871655
p03738
C++
using namespace std; int main() { int a,b; cin >> a >> b; if(a>b){ cout << "GREATER" << endl; } else if (a==b){ cout << "EQUAL" << endl; } else{ cout << "LESS" << endl; } }
a.cc: In function 'int main()': a.cc:5:3: error: 'cin' was not declared in this scope 5 | cin >> a >> b; | ^~~ a.cc:1:1: note: 'std::cin' is defined in header '<iostream>'; this is probably fixable by adding '#include <iostream>' +++ |+#include <iostream> 1 | using namespace std; a.cc:7:5: error: 'cout' was not declared in this scope 7 | cout << "GREATER" << endl; | ^~~~ a.cc:7:5: note: 'std::cout' is defined in header '<iostream>'; this is probably fixable by adding '#include <iostream>' a.cc:7:26: error: 'endl' was not declared in this scope 7 | cout << "GREATER" << endl; | ^~~~ a.cc:1:1: note: 'std::endl' is defined in header '<ostream>'; this is probably fixable by adding '#include <ostream>' +++ |+#include <ostream> 1 | using namespace std; a.cc:10:5: error: 'cout' was not declared in this scope 10 | cout << "EQUAL" << endl; | ^~~~ a.cc:10:5: note: 'std::cout' is defined in header '<iostream>'; this is probably fixable by adding '#include <iostream>' a.cc:10:24: error: 'endl' was not declared in this scope 10 | cout << "EQUAL" << endl; | ^~~~ a.cc:10:24: note: 'std::endl' is defined in header '<ostream>'; this is probably fixable by adding '#include <ostream>' a.cc:13:5: error: 'cout' was not declared in this scope 13 | cout << "LESS" << endl; | ^~~~ a.cc:13:5: note: 'std::cout' is defined in header '<iostream>'; this is probably fixable by adding '#include <iostream>' a.cc:13:23: error: 'endl' was not declared in this scope 13 | cout << "LESS" << endl; | ^~~~ a.cc:13:23: note: 'std::endl' is defined in header '<ostream>'; this is probably fixable by adding '#include <ostream>'
s151704320
p03738
Java
import org.omg.PortableInterceptor.SYSTEM_EXCEPTION; import java.lang.reflect.Array; import java.util.*; public class Main { public static void main(String[] args) { Scanner sc = new Scanner(System.in); String a = sc.next(); String b = sc.next(); if (a.length() > b.length()) { System.out.println("GREATER"); return; } else if (b.length() > a.length()) { System.out.println("LESS"); return; } for(int i=0;i<b.length();i++){ if(a.charAt(i)>b.charAt(i)){ System.out.println("GREATER"); return; } else if(b.charAt(i)>a.charAt(i)){ System.out.println("LESS"); return; } } System.out.println("EQUAL"); } }
Main.java:1: error: package org.omg.PortableInterceptor does not exist import org.omg.PortableInterceptor.SYSTEM_EXCEPTION; ^ 1 error
s516793798
p03738
C++
#include <bits/stdc++.h> using namespace std; int main(){ string A,B; cin >> A >> B; if(A.size()>B.size()){ cout << "GREATER" << endl; } else if(A.size()<B.size(){ cout << "LESS" << endl; } else if(A>B){ cout << "GREATER" << endl; } else if(A==B){ cout << "EQUAL" << endl; } else{ cout << "LESS" << endl; } }
a.cc: In function 'int main()': a.cc:10:28: error: expected ')' before '{' token 10 | else if(A.size()<B.size(){ | ~ ^ | ) a.cc:22:1: error: expected primary-expression before '}' token 22 | } | ^
s912424519
p03738
C
#include <stdio.h> #include <string.h> int main(void){ int i; char b[101],a[101]; scanf("%s%s",a,b); if(strlen(a)>strlen(b)){ printf("GREATER\n"); } else if(strlen(b)>strlen(a)){ printf("LESS\n\n"); } else if{ for(i=0;i<strlen(a);i++){ if(a[i]>b[i]){ printf("GREATER\n"); break; return 0; } else if(a[i]<b[i]){ printf("LESS\n"); break; return 0; } } } else{ printf("EQUAL\n"); return 0; } }
main.c: In function 'main': main.c:17:12: error: expected '(' before '{' token 17 | else if{ | ^ | (
s126050867
p03738
C++
#include<bits/stdc++.h> using namespace std; int main(){ long long double a,b; cin>>a>>b; if(a>b){ cout<<"GREAT"<<endl; } else if(a<b){ cout<<"LESS"<<endl; } else if(a == b){ cout<<"EQUAL"<<endl; } return 0; }
a.cc: In function 'int main()': a.cc:4:14: error: 'long long' specified with 'double' 4 | long long double a,b; | ^~~~ a.cc:4:14: error: 'long long' specified with 'double'
s026829553
p03738
C++
// Created by ...Lusifer #include<bits/stdc++.h> using namespace std; #define pb push_back #define mp make_pair #define prior priority_queue #define MOD 1000000007 #define INF64 (long long)1e18 #define INF (int)1e9 #define PI 3.1415926535897932384626433832795 #define ll long long #define ld long double #define ret return #define NUM 1000001 const int SIZE = 2e5+4; void fastio(){ ios_base::sync_with_stdio(false); cin.tie(0); cout.tie(0); } void solveTest(){ string a,b; cin>>a>>b; if(a.size()>b.size()){ cout<<"GREATER"<<endl; } else if(a.size()<b.size()){ cout<<"LESS"<<endl; } else { int g=0; int l=0; int e=0; for(int i=0;i<a.size();i++){ if(a[i]<b[i]){ l=1; break; } else(a[i]>b[i]){ g=1; break; } } if(l==1){ cout<<"LESS"<<endl; } else if(g==1) { cout<<"GREATER"<<endl; } else { cout<<"EQUAL"<<endl; } } return ; } int main(){ fastio(); int t=1; //cin>>t; while(t--){ solveTest(); } return 0; }
a.cc: In function 'void solveTest()': a.cc:41:40: error: expected ';' before '{' token 41 | else(a[i]>b[i]){ | ^ | ;
s210001578
p03738
C++
#include<iostream> #include<string> #include<cstdlib> using namespace std; int main() { string a, b; cin >> a >> b; if (a.size() > b.size()) cout << "GREATER"; else if (a.size() < b.size()) cout << "LESS"; else { int s = a.size(); bool flag = false; for (int i = 0; i < s; i ++) { if (atoi(a.at(i)) > atoi(b.at(i))) { cout << "GREATER"; flag = true; break; } else if (atoi(a.at(i)) < atoi(b.at(i))) { cout << "LESS"; flag = true; break; } } if (!flag) cout << "EQUAL"; } return 0; }
a.cc: In function 'int main()': a.cc:21:20: error: invalid conversion from '__gnu_cxx::__alloc_traits<std::allocator<char>, char>::value_type' {aka 'char'} to 'const char*' [-fpermissive] 21 | if (atoi(a.at(i)) > atoi(b.at(i))) | ~~~~^~~ | | | __gnu_cxx::__alloc_traits<std::allocator<char>, char>::value_type {aka char} In file included from /usr/include/c++/14/cstdlib:79, from /usr/include/c++/14/ext/string_conversions.h:43, from /usr/include/c++/14/bits/basic_string.h:4154, from /usr/include/c++/14/string:54, from /usr/include/c++/14/bits/locale_classes.h:40, from /usr/include/c++/14/bits/ios_base.h:41, from /usr/include/c++/14/ios:44, from /usr/include/c++/14/ostream:40, from /usr/include/c++/14/iostream:41, from a.cc:1: /usr/include/stdlib.h:105:30: note: initializing argument 1 of 'int atoi(const char*)' 105 | extern int atoi (const char *__nptr) | ~~~~~~~~~~~~^~~~~~ a.cc:21:36: error: invalid conversion from '__gnu_cxx::__alloc_traits<std::allocator<char>, char>::value_type' {aka 'char'} to 'const char*' [-fpermissive] 21 | if (atoi(a.at(i)) > atoi(b.at(i))) | ~~~~^~~ | | | __gnu_cxx::__alloc_traits<std::allocator<char>, char>::value_type {aka char} /usr/include/stdlib.h:105:30: note: initializing argument 1 of 'int atoi(const char*)' 105 | extern int atoi (const char *__nptr) | ~~~~~~~~~~~~^~~~~~ a.cc:27:25: error: invalid conversion from '__gnu_cxx::__alloc_traits<std::allocator<char>, char>::value_type' {aka 'char'} to 'const char*' [-fpermissive] 27 | else if (atoi(a.at(i)) < atoi(b.at(i))) | ~~~~^~~ | | | __gnu_cxx::__alloc_traits<std::allocator<char>, char>::value_type {aka char} /usr/include/stdlib.h:105:30: note: initializing argument 1 of 'int atoi(const char*)' 105 | extern int atoi (const char *__nptr) | ~~~~~~~~~~~~^~~~~~ a.cc:27:41: error: invalid conversion from '__gnu_cxx::__alloc_traits<std::allocator<char>, char>::value_type' {aka 'char'} to 'const char*' [-fpermissive] 27 | else if (atoi(a.at(i)) < atoi(b.at(i))) | ~~~~^~~ | | | __gnu_cxx::__alloc_traits<std::allocator<char>, char>::value_type {aka char} /usr/include/stdlib.h:105:30: note: initializing argument 1 of 'int atoi(const char*)' 105 | extern int atoi (const char *__nptr) | ~~~~~~~~~~~~^~~~~~
s065615072
p03738
C++
#include<iostream> int main() { string s1,s2;std::cin>>s1>>s2; if(s1.size()>s2.size()) return puts("GREATER")*0; else if(s1.size()<s2.size()) return puts("LESSER")*0; else for(int i=0;i<s1.size();++i) if(s1[i]>s2[i]) return puts("GREATER")*0; else if(s1[i]<s2[i]) return puts("LESSER")*0; }
a.cc: In function 'int main()': a.cc:4:5: error: 'string' was not declared in this scope 4 | string s1,s2;std::cin>>s1>>s2; | ^~~~~~ a.cc:4:5: note: suggested alternatives: In file included from /usr/include/c++/14/iosfwd:41, from /usr/include/c++/14/ios:40, from /usr/include/c++/14/ostream:40, from /usr/include/c++/14/iostream:41, from a.cc:1: /usr/include/c++/14/bits/stringfwd.h:77:33: note: 'std::string' 77 | typedef basic_string<char> string; | ^~~~~~ In file included from /usr/include/c++/14/bits/locale_classes.h:40, from /usr/include/c++/14/bits/ios_base.h:41, from /usr/include/c++/14/ios:44: /usr/include/c++/14/string:76:11: note: 'std::pmr::string' 76 | using string = basic_string<char>; | ^~~~~~ a.cc:4:28: error: 's1' was not declared in this scope 4 | string s1,s2;std::cin>>s1>>s2; | ^~ a.cc:4:32: error: 's2' was not declared in this scope 4 | string s1,s2;std::cin>>s1>>s2; | ^~
s787774097
p03738
C++
#include <bits/stdc++.h> #define rep(i, n) for(int i = 0; i < (n); i++) #define prtd(var, i) cout << fixed << setprecision(i) << var << endl; #define ll long long using namespace std; #define INF 1e18LL const ll MAX = 1000000000000000000; //1e18 int main(){ string a, b; ll x = 0; cin >> a >> b; if(a.size() > b.size()) cout << "GREATER" << endl, return 0; else if(a.size() < b.size()) cout << "LESS" << endl, return 0; else{ rep(i, a.size()){ if(a[i] > b[i]){ cout << "GREATER" << endl; return 0; }else if(a[i] < b[i]){ cout << "LESS" << endl; return 0; } } cout << "EQUAL" << endl; } }
a.cc: In function 'int main()': a.cc:14:56: error: expected primary-expression before 'return' 14 | if(a.size() > b.size()) cout << "GREATER" << endl, return 0; | ^~~~~~ a.cc:15:58: error: expected primary-expression before 'return' 15 | else if(a.size() < b.size()) cout << "LESS" << endl, return 0; | ^~~~~~
s618712064
p03738
C++
#include "bits/stdc++.h" using namespace std; typedef long long ll; #define REP(i, a, b) for(ll i = ll(a); i <= ll(b); i++) int main() { ll a,b; cin>>a>>b; if(a>b) cout<<"GREATER"; else(a<b) cout<<"LESS"; else if(a==b) cout<<"EQUAL"; }
a.cc: In function 'int main()': a.cc:11:14: error: expected ';' before 'cout' 11 | else(a<b) | ^ | ; 12 | cout<<"LESS"; | ~~~~ a.cc:13:5: error: 'else' without a previous 'if' 13 | else if(a==b) | ^~~~
s463595245
p03738
C++
#include <bits/stdc++.h> using namespace std; typedef long long ll; int main(){ string a,b; cin>>a>>b; if(a==b){cout<<"EQUAL"<<endl;return 0;} rep(i, 0, min(a.size(),b.size()) ){ int N=a[i]-'0'; int M=b[i]-'0'; if(N>M) {cout<<"GREATER"<<endl;return 0;} else if(N<M) {cout<<"LESS"<<endl;return 0;} } return 0; }
a.cc: In function 'int main()': a.cc:9:9: error: 'i' was not declared in this scope 9 | rep(i, 0, min(a.size(),b.size()) ){ | ^ a.cc:9:5: error: 'rep' was not declared in this scope 9 | rep(i, 0, min(a.size(),b.size()) ){ | ^~~
s484753378
p03738
C++
#include<bits/stdc++.h> // #include <boost/lexical_cast.hpp> using namespace std; #define ll long long int #define vll vector<ll> #define vllv vector<vector<ll>> #define sz size() #define pb push_back #define ff first #define ss second #define all(v) v.begin(),v.end() #define allr(v) v.rbegin(),v.rend() #define fast ios_base::sync_with_stdio(0); cin.tie(0); cout.tie(0) ll ceil1(ll n,ll m){if(n%m==0){return n/m;}return n/m +1;} vll factor(ll n){ vll ans; if(n>0)ans.pb(1);if(n==2)ans.pb(2); for(ll i=2;i*i<=n;i++){if(n%i==0){ans.pb(i);if(n/i!=i)ans.pb(n/i);}}if(n>2)ans.pb(n); return ans; } ll fact(ll n){ ll res = 1; for (ll i = 2; i <= n; i++) res = res * i; return res; } int nCr(ll n, ll r) { return fact(n) / (fact(r) * fact(n - r)); } void dfs(vllv &v,ll k,vll &par,vll &dis,ll p) { par[k]=p; dis[k]=dis[p]+1; for(ll i=0;i<v[k].sz;i++){ if(v[k][i]!=p){ dfs(v,v[k][i],par,dis,k); } } } bool sortbysec(const pair<string,int> &a,const pair<string,int> &b){return (a.second<b.second);} ll ston(string s) { stringstream geek(s); ll x = 0; geek >> x; return x; } ll pow2(ll n,ll k){ll ans=1; while(k>0){ if(k%2==1)ans=ans*n;n=n*n;k/=2; }return ans;} bool prime(int n){ int i,j; for(i=2;i<=sqrt(n);i++){ if(n%i==0){ return false; } } return true; } bool bserch(vector<string> a, string s){ ll l=0,r=a.sz-1,mid; while(l<=r){ mid=(l+r)/2; if(a[mid]==s)return true; if(a[mid]<s){ l=mid+1; }else{ r=mid-1; } } return false; } bool sortcol( const vector<int>& v1, const vector<int>& v2 ) { return v1[0] < v2[0]; } ll degit(ll n) { ll t=0; while(n>0) { t++; n/=10; } return t; } void solve() { string s,t; cin>>s>>t; ll a=s.sz,b=b.sz; // ll a,b; // cin>>a>>b; if(a>b) cout<<"GREATER"; else if(a<b) cout<<"LESS"; else { for(ll i=0;i<a;i++) { if(s[i]>t[i]) { cout<<"GREATER"; return; } else if(s[i]<t[i]) { cout<<"LESS"; return; } } cout<<"EQUAL"; } return; } int main() { fast; ll q; q=1; // cin>>q; while(q--) { solve(); } return 0; }
a.cc: In function 'void solve()': a.cc:9:12: error: request for member 'size' in 'b', which is of non-class type 'long long int' 9 | #define sz size() | ^~~~ a.cc:108:23: note: in expansion of macro 'sz' 108 | ll a=s.sz,b=b.sz; | ^~
s603637278
p03738
Java
import java.util.*; public class Main{ public static void main(String[] args){ Scanner sc = new Scanner(System.in); char[] a=sc.next().toCharArray(),b=sc.next().toCharArray(); int f=0; if(a.length>b.length){ System.out.println("GREATER"); }else if(a.length<b.length){ System.out.println("LESS"); }else{ for(int i=0;i<a.length;i++){ if(Integer.parseInt(a[i])>Integer.parseInt(b[i])){ System.out.println("GREATER"); f++; break; }else if(Integer.parseInt(a[i])<Integer.parseInt(b[i])){ System.out.println("LESS"); f++; break; }else{} } if(f==0){ System.out.println("EQUAL"); } } } }
Main.java:15: error: incompatible types: char cannot be converted to String if(Integer.parseInt(a[i])>Integer.parseInt(b[i])){ ^ Main.java:15: error: incompatible types: char cannot be converted to String if(Integer.parseInt(a[i])>Integer.parseInt(b[i])){ ^ Main.java:19: error: incompatible types: char cannot be converted to String }else if(Integer.parseInt(a[i])<Integer.parseInt(b[i])){ ^ Main.java:19: error: incompatible types: char cannot be converted to String }else if(Integer.parseInt(a[i])<Integer.parseInt(b[i])){ ^ Note: Some messages have been simplified; recompile with -Xdiags:verbose to get full output 4 errors
s567034291
p03738
C++
string a, b; cin >> a >> b; if(a.size()<b.size()){ prt("LESS"); return 0; } else if(a.size()>b.size()){ prt("GREATER"); return 0; } rep(i,a.size()){ if(a[i]<b[i]){ prt("LESS"); return 0; } else if(a[i]>b[i]){ prt("GREATER"); return 0; } } prt("EQUAL");
a.cc:1:3: error: 'string' does not name a type 1 | string a, b; | ^~~~~~ a.cc:2:3: error: 'cin' does not name a type 2 | cin >> a >> b; | ^~~ a.cc:4:3: error: expected unqualified-id before 'if' 4 | if(a.size()<b.size()){ | ^~ a.cc:7:5: error: expected unqualified-id before 'else' 7 | } else if(a.size()>b.size()){ | ^~~~ a.cc:12:6: error: expected constructor, destructor, or type conversion before '(' token 12 | rep(i,a.size()){ | ^ a.cc:22:6: error: expected constructor, destructor, or type conversion before '(' token 22 | prt("EQUAL"); | ^
s023167391
p03738
C++
#include <bits/stdc++.h> using namespace std; int main() { string A,B; cin >> A >> B; if (A.size()>B.size()) cout << "GREATER" << endl; else if (A.size()<B.size()) cout << "LESS" << endl; else { for (int i=0; i<A.size(); i++) { if (atoi(A.at(i))>atoi(B.at(i))) { cout << "GREATER" << endl;break; } else if (atoi(A.at(i))<atoi(B.at(i))) { cout << "LESS" << endl;break; } if (i==A.size()-1) cout << "EQUAL" << endl; } } }
a.cc: In function 'int main()': a.cc:11:24: error: invalid conversion from '__gnu_cxx::__alloc_traits<std::allocator<char>, char>::value_type' {aka 'char'} to 'const char*' [-fpermissive] 11 | if (atoi(A.at(i))>atoi(B.at(i))) { | ~~~~^~~ | | | __gnu_cxx::__alloc_traits<std::allocator<char>, char>::value_type {aka char} In file included from /usr/include/c++/14/cstdlib:79, from /usr/include/x86_64-linux-gnu/c++/14/bits/stdc++.h:42, from a.cc:1: /usr/include/stdlib.h:105:30: note: initializing argument 1 of 'int atoi(const char*)' 105 | extern int atoi (const char *__nptr) | ~~~~~~~~~~~~^~~~~~ a.cc:11:38: error: invalid conversion from '__gnu_cxx::__alloc_traits<std::allocator<char>, char>::value_type' {aka 'char'} to 'const char*' [-fpermissive] 11 | if (atoi(A.at(i))>atoi(B.at(i))) { | ~~~~^~~ | | | __gnu_cxx::__alloc_traits<std::allocator<char>, char>::value_type {aka char} /usr/include/stdlib.h:105:30: note: initializing argument 1 of 'int atoi(const char*)' 105 | extern int atoi (const char *__nptr) | ~~~~~~~~~~~~^~~~~~ a.cc:14:29: error: invalid conversion from '__gnu_cxx::__alloc_traits<std::allocator<char>, char>::value_type' {aka 'char'} to 'const char*' [-fpermissive] 14 | else if (atoi(A.at(i))<atoi(B.at(i))) { | ~~~~^~~ | | | __gnu_cxx::__alloc_traits<std::allocator<char>, char>::value_type {aka char} /usr/include/stdlib.h:105:30: note: initializing argument 1 of 'int atoi(const char*)' 105 | extern int atoi (const char *__nptr) | ~~~~~~~~~~~~^~~~~~ a.cc:14:43: error: invalid conversion from '__gnu_cxx::__alloc_traits<std::allocator<char>, char>::value_type' {aka 'char'} to 'const char*' [-fpermissive] 14 | else if (atoi(A.at(i))<atoi(B.at(i))) { | ~~~~^~~ | | | __gnu_cxx::__alloc_traits<std::allocator<char>, char>::value_type {aka char} /usr/include/stdlib.h:105:30: note: initializing argument 1 of 'int atoi(const char*)' 105 | extern int atoi (const char *__nptr) | ~~~~~~~~~~~~^~~~~~
s507408052
p03738
C++
#include <bits/stdc++.h> #define rep(i,n) for (int i=0; i<(n); ++i) #define rrep(i,n) for(int i=1; i<=(n); ++i) #define drep(i,n) for(int i=(n)-1; i>=0; --i) #define srep(i,s,t) for (int i=s; i<t; ++i) #define pb push_back using namespace std; using P = pair<int,int>; typedef long long ll; typedef vector<int> vi; typedef vector<vi> vvi; typedef vector<ll> vl; typedef tuple<int,int,int> T; typedef vector<P> vp; typedef vector<T> vt; int main(void){ int A, B; cin >> A >> B; if(A>B){ cout << "GREATER" << endl; } else if(A<B){ cout << "LESS" << endl; } else { cout << "EQUAL" << endl } return 0; }
a.cc: In function 'int main()': a.cc:25:28: error: expected ';' before '}' token 25 | cout << "EQUAL" << endl | ^ | ; 26 | } | ~
s238576326
p03738
C++
#include <bits/stdc++.h> using namespace std; int main(){ string a,b; cin >> a >> b; int al = (int) a.size(), bl = (int) b.size(); if (al > bl) {cout << "GREATER"; return 0;} else if (bl > al) {cout << "LESS"; return 0;} else { for (int i=0; i<al; i++){ if (a[i] > b[i]) {cout << "GREATER"; return 0;} else if (b[i] > a[i]) {cout << "LESS"; return 0;} } } return "EQUAL"; }
a.cc: In function 'int main()': a.cc:16:16: error: invalid conversion from 'const char*' to 'int' [-fpermissive] 16 | return "EQUAL"; | ^~~~~~~ | | | const char*
s257404035
p03738
Java
import java.util.*; public class Main() { public static void main(String args[]) { Scanner sc = new Scanner(System.in); int a = sc.nextInt(); int b = sc.nextInt(); if (a > b) { System.out.println("GREATER"); } else if (a < b) { System.out.println("LESS"); } else { System.out.println("EQUAL"); } } }
Main.java:2: error: '{' expected public class Main() { ^ 1 error
s160903600
p03738
C++
#include <bits/stdc++.h> using namespace std; #define rep(i, n) for (int i = 0; i < (int)(n); i++) int ctoi(const char c) { if ('0' <= c && c <= '9') return (c - '0'); return -1; } vector<int> input(int n) { vector<int> vec(n); for (int i = 0; i < n; i++) { cin >> vec.at(i); } return vec; } void output(vector<int> vec) { for (int i = 0; i < vec.size(); i++) { cout << vec[i] << " "; } return; } vector<vector<int>> input(int n, int m) { vector<vector<int>> table(n, vector<int>(m)); for (int i = 0; i < n; i++) { for (int j = 0; j < m; j++) { cin >> table. at(i).at(j); } } return table; } void output(vector<vector<int>> table) { for (int i = 0; i < table.size(); i++) { for (int j = 0; j < table.at(0).size(); j++) { cout << table.at(i).at(j) << " "; } cout << endl; } } long long perm(int n, int r) { if (n < r) { cout << "error" << endl; return 0; } long long perm = 1; for (int i = n; i > n - r; i--) { perm *= i; } return perm; } long long comb(int n, int r) { if (n < r) { cout << "error" << endl; return 0; } long long comb = perm(n,r); for (int i = r; i > 0; i--) { comb /= i; } return comb; } long long homo(int n, int r) { return comb(n + r - 1, n - 1); } long long fact(int n) { long long fact = 1; for (int i = n; i > 0; i--) { fact *= i; } return fact; } int gcd(int a, int b) { if (a % b == 0) { return(b); } else { return(gcd(b, a % b)); } } int lcm(int a, int b) { return a * b / gcd(a, b); } int main() { string s1,s2; cin >> s1 >> s2; if(s1.size()>s2.size()){ cout << "GREATER" << endl; return 0; } else if(s1.size()<s2.size()){ cout << "LESS" << endl; return 0; }else{ if(si>s2){ cout << "GREATER" << endl; } else if(s1<s2){ cout << "LESS" << endl; }else{ cout << "EQUAL" << endl; } } }
a.cc: In function 'int main()': a.cc:95:8: error: 'si' was not declared in this scope; did you mean 's2'? 95 | if(si>s2){ | ^~ | s2
s153731921
p03738
C++
#include<bits/stdc++.h> using namespace std; int main(){ char s[200],t[200]; cin >> s >> t; if(strlen(s)<strlen(t))cout << "LESS"; else if(strlen(s)>strlen(t))cout << "GREATER"; else if(strcmp(s,t)<0)cout << "LESS"; else if(strcmp(t,s)<0)cout << "GREATER"; else cout << "EQUAL"; /*#include<bits/stdc++.h> using namespace std; int main(){ int a,b,c; cin >> a >> b >> c; int k; cin >> k; if(a>=b&&a>=c)a=a*pow(2,k); if(b>=a&&b>=c)b=b*pow(2,k); if(c>=b&&c>=a)c=c*pow(2*k); cout << a+b+c; } }
a.cc:11:6: error: unterminated comment 11 | /*#include<bits/stdc++.h> | ^ a.cc: In function 'int main()': a.cc:10:24: error: expected '}' at end of input 10 | else cout << "EQUAL"; | ^ a.cc:3:11: note: to match this '{' 3 | int main(){ | ^
s302979331
p03738
C++
#include <bits/stdc++.h> using namespace std; #define rep(i, n) for (int i = 0; i < (int)(n); i++) #define INF 1e9 #define PI 3.14159265359 #define MOD 1000000007 #define ALL(v) v.begin(),v.end() #define ALLR(v) v.rbegin(),v.rend() typedef long long ll; const int dx[4] = {1,0,-1,0}; const int dy[4] = {0,1,0,-1}; //isPrime //modpow modinv //getDigit int main() { cout << fixed << setprecision(10); string a,b; cin >> a >> b; if(a>b){ cout <<"GREATER" << endl; }else if(a==b)[ cout << "EQUAL" << endl; ]else{ cout << "LESS" << endl; } }
a.cc: In function 'int main()': a.cc:22:3: warning: capture of variable 'std::cout' with non-automatic storage duration 22 | cout << "EQUAL" << endl; | ^~~~ In file included from /usr/include/x86_64-linux-gnu/c++/14/bits/stdc++.h:146, from a.cc:1: /usr/include/c++/14/iostream:63:18: note: 'std::ostream std::cout' declared here 63 | extern ostream cout; ///< Linked to standard output | ^~~~ a.cc:22:7: error: expected ',' before '<<' token 22 | cout << "EQUAL" << endl; | ^~~ | , a.cc:22:8: error: expected identifier before '<<' token 22 | cout << "EQUAL" << endl; | ^~ a.cc:22:26: error: expected ']' before ';' token 22 | cout << "EQUAL" << endl; | ^ | ] a.cc: In lambda function: a.cc:22:26: error: expected '{' before ';' token a.cc: In function 'int main()': a.cc:23:3: error: expected primary-expression before ']' token 23 | ]else{ | ^
s531929419
p03738
C
#include<stdio.h> int main() { unsinged long long int64 A,B; scanf("%llu",&A); scanf("%llu",&B); if(A>B) printf("GREATER\n"); else if(A<B) printf("LESS\n"); else printf("EQUAL\n"); return 0; }
main.c: In function 'main': main.c:4:9: error: 'unsinged' undeclared (first use in this function) 4 | unsinged long long int64 A,B; | ^~~~~~~~ main.c:4:9: note: each undeclared identifier is reported only once for each function it appears in main.c:4:17: error: expected ';' before 'long' 4 | unsinged long long int64 A,B; | ^~~~~ | ; main.c:5:23: error: 'A' undeclared (first use in this function) 5 | scanf("%llu",&A); | ^ main.c:6:23: error: 'B' undeclared (first use in this function) 6 | scanf("%llu",&B); | ^
s540861734
p03738
C
#include<stdio.h> #include<string.h> int main () { string A,B; scanf("%s%s",A,B); if (strlen(A)>strlen(B)) printf("GREATER"); else if (strlen(A)>strlen(B)) printf("LESS"); else{ if (a>b) printf("GREATER"); else if (a<b) printf("LESS"); else printf("EQUAL"); } return 0; }
main.c: In function 'main': main.c:5:5: error: unknown type name 'string'; did you mean 'stdin'? 5 | string A,B; | ^~~~~~ | stdin main.c:7:16: error: passing argument 1 of 'strlen' makes pointer from integer without a cast [-Wint-conversion] 7 | if (strlen(A)>strlen(B)) | ^ | | | int In file included from main.c:2: /usr/include/string.h:407:35: note: expected 'const char *' but argument is of type 'int' 407 | extern size_t strlen (const char *__s) | ~~~~~~~~~~~~^~~ main.c:7:26: error: passing argument 1 of 'strlen' makes pointer from integer without a cast [-Wint-conversion] 7 | if (strlen(A)>strlen(B)) | ^ | | | int /usr/include/string.h:407:35: note: expected 'const char *' but argument is of type 'int' 407 | extern size_t strlen (const char *__s) | ~~~~~~~~~~~~^~~ main.c:10:21: error: passing argument 1 of 'strlen' makes pointer from integer without a cast [-Wint-conversion] 10 | else if (strlen(A)>strlen(B)) | ^ | | | int /usr/include/string.h:407:35: note: expected 'const char *' but argument is of type 'int' 407 | extern size_t strlen (const char *__s) | ~~~~~~~~~~~~^~~ main.c:10:31: error: passing argument 1 of 'strlen' makes pointer from integer without a cast [-Wint-conversion] 10 | else if (strlen(A)>strlen(B)) | ^ | | | int /usr/include/string.h:407:35: note: expected 'const char *' but argument is of type 'int' 407 | extern size_t strlen (const char *__s) | ~~~~~~~~~~~~^~~ main.c:15:13: error: 'a' undeclared (first use in this function) 15 | if (a>b) | ^ main.c:15:13: note: each undeclared identifier is reported only once for each function it appears in main.c:15:15: error: 'b' undeclared (first use in this function) 15 | if (a>b) | ^
s257891888
p03738
C
#include<stdio.h> #include<string.h> int main () { string A,B; scanf("%s%s",A,B); if (strlen(A)>strlen(B)) printf("GREATER"); else if (strlen(A)>strlen(B)) printf("LESS"); else{ if (a>b) printf("GREATER"); else if (a<b) printf("LESS"); else printf("EQUAL"); } return 0; }
main.c: In function 'main': main.c:5:5: error: unknown type name 'string'; did you mean 'stdin'? 5 | string A,B; | ^~~~~~ | stdin main.c:7:16: error: passing argument 1 of 'strlen' makes pointer from integer without a cast [-Wint-conversion] 7 | if (strlen(A)>strlen(B)) | ^ | | | int In file included from main.c:2: /usr/include/string.h:407:35: note: expected 'const char *' but argument is of type 'int' 407 | extern size_t strlen (const char *__s) | ~~~~~~~~~~~~^~~ main.c:7:26: error: passing argument 1 of 'strlen' makes pointer from integer without a cast [-Wint-conversion] 7 | if (strlen(A)>strlen(B)) | ^ | | | int /usr/include/string.h:407:35: note: expected 'const char *' but argument is of type 'int' 407 | extern size_t strlen (const char *__s) | ~~~~~~~~~~~~^~~ main.c:10:21: error: passing argument 1 of 'strlen' makes pointer from integer without a cast [-Wint-conversion] 10 | else if (strlen(A)>strlen(B)) | ^ | | | int /usr/include/string.h:407:35: note: expected 'const char *' but argument is of type 'int' 407 | extern size_t strlen (const char *__s) | ~~~~~~~~~~~~^~~ main.c:10:31: error: passing argument 1 of 'strlen' makes pointer from integer without a cast [-Wint-conversion] 10 | else if (strlen(A)>strlen(B)) | ^ | | | int /usr/include/string.h:407:35: note: expected 'const char *' but argument is of type 'int' 407 | extern size_t strlen (const char *__s) | ~~~~~~~~~~~~^~~ main.c:15:13: error: 'a' undeclared (first use in this function) 15 | if (a>b) | ^ main.c:15:13: note: each undeclared identifier is reported only once for each function it appears in main.c:15:15: error: 'b' undeclared (first use in this function) 15 | if (a>b) | ^
s694282644
p03738
C
#include<stdio.h> int main() { __int64 A,B; scanf("%i64d",&A); scanf("%i64d",&B); if(A>B) printf("GREATER\n"); else if(A<B) printf("LESS\n"); else printf("EQUAL\n"); return 0; }
main.c: In function 'main': main.c:4:9: error: unknown type name '__int64'; did you mean '__int64_t'? 4 | __int64 A,B; | ^~~~~~~ | __int64_t
s947797729
p03738
C
#include<stdio.h> int main() { __int64 A,B; scanf("%l64d",&A); scanf("%l64d",&B); if(A>B) printf("GREATER\n"); else if(A<B) printf("LESS\n"); else printf("EQUAL\n"); return 0; }
main.c: In function 'main': main.c:4:9: error: unknown type name '__int64'; did you mean '__int64_t'? 4 | __int64 A,B; | ^~~~~~~ | __int64_t
s416349425
p03738
C
#include<stdio.h> int main() { __int64 A,B; scanf("%164d",&A); scanf("%164d",&B); if(A>B) printf("GREATER\n"); else if(A<B) printf("LESS\n"); else printf("EQUAL\n"); return 0; }
main.c: In function 'main': main.c:4:9: error: unknown type name '__int64'; did you mean '__int64_t'? 4 | __int64 A,B; | ^~~~~~~ | __int64_t
s367186766
p03738
C++
int main(void){ // Your code here! char num[2][102]; int cnt[2] = {}; scanf("%101s%101s",num[0],num[1]); for(int i = 0; i < 2; i++){ for(int j = 0; num[i][j] != '\0'; j++){ cnt[i]++; } } if(strcmp(num[0],num[1]) == 0){ printf("EQUAL\n"); } else if(cnt[0] > cnt[1]){ printf("GREATER\n"); } else if(cnt[0] < cnt[1]){ printf("LESS\n"); } else{ for(int i = 1; i < cnt[0]; i++){ if(num[0][i] > num[1][i]){ printf("GREATER\n"); break; } else if(num[0][i] < num[1][i]){ printf("LESS\n"); break; } } } }
a.cc: In function 'int main()': a.cc:6:5: error: 'scanf' was not declared in this scope 6 | scanf("%101s%101s",num[0],num[1]); | ^~~~~ a.cc:14:8: error: 'strcmp' was not declared in this scope 14 | if(strcmp(num[0],num[1]) == 0){ | ^~~~~~ a.cc:1:1: note: 'strcmp' is defined in header '<cstring>'; this is probably fixable by adding '#include <cstring>' +++ |+#include <cstring> 1 | int main(void){ a.cc:15:9: error: 'printf' was not declared in this scope 15 | printf("EQUAL\n"); | ^~~~~~ a.cc:1:1: note: 'printf' is defined in header '<cstdio>'; this is probably fixable by adding '#include <cstdio>' +++ |+#include <cstdio> 1 | int main(void){ a.cc:18:9: error: 'printf' was not declared in this scope 18 | printf("GREATER\n"); | ^~~~~~ a.cc:18:9: note: 'printf' is defined in header '<cstdio>'; this is probably fixable by adding '#include <cstdio>' a.cc:21:9: error: 'printf' was not declared in this scope 21 | printf("LESS\n"); | ^~~~~~ a.cc:21:9: note: 'printf' is defined in header '<cstdio>'; this is probably fixable by adding '#include <cstdio>' a.cc:26:17: error: 'printf' was not declared in this scope 26 | printf("GREATER\n"); | ^~~~~~ a.cc:26:17: note: 'printf' is defined in header '<cstdio>'; this is probably fixable by adding '#include <cstdio>' a.cc:30:17: error: 'printf' was not declared in this scope 30 | printf("LESS\n"); | ^~~~~~ a.cc:30:17: note: 'printf' is defined in header '<cstdio>'; this is probably fixable by adding '#include <cstdio>'
s392077685
p03738
C++
#include <bits/stdc++.h> using namespace std; int main() { int256_t A,B; cin >> A >> B; if(A<B) cout << "LESS" << endl; else if(A>B) cout << "GREATER" << endl; else cout << "EQUAL" << endl; }
a.cc: In function 'int main()': a.cc:5:5: error: 'int256_t' was not declared in this scope; did you mean 'int16_t'? 5 | int256_t A,B; | ^~~~~~~~ | int16_t a.cc:6:12: error: 'A' was not declared in this scope 6 | cin >> A >> B; | ^ a.cc:6:17: error: 'B' was not declared in this scope 6 | cin >> A >> B; | ^
s823133478
p03738
C++
#include <bits/stdc++.h> using namespace std; int main() { string s,t; cin >> s >> t; int a=s.size(),b=t.size(); if(a>b){ cout << "GREATER"; }else if(a<b){ cout << "LESS"; }else{ if(s>t){ cout << "GREATER"; }else if(s<t){ cout << "LESS"; }else{ cout << "EQUAL"; } }
a.cc: In function 'int main()': a.cc:20:2: error: expected '}' at end of input 20 | } | ^ a.cc:4:12: note: to match this '{' 4 | int main() { | ^
s865295216
p03738
C++
#include <bits/stdc++.h> using namespace std; int main() { string s,t; cin >> s >> t; int a=s.size(),b=t.size(); if(a>b){ cout << "GREATER"; }else if(a<b){ cout << "LESS"; }else{ if(s>t){ cout << "GREATER"; }else if(s<t){ cout << "LESS"; }else{ cout << "EQUAL" } }
a.cc: In function 'int main()': a.cc:18:22: error: expected ';' before '}' token 18 | cout << "EQUAL" | ^ | ; 19 | } | ~ a.cc:20:2: error: expected '}' at end of input 20 | } | ^ a.cc:4:12: note: to match this '{' 4 | int main() { | ^
s116308934
p03738
C++
#include <bits/stdc++.h> using namespace std; using ll=long long; const ll MOD=1000000007; const double PI=3.14159265358979; const ll INF= pow(10,18); typedef pair<ll,ll> P; typedef vector<ll> vl; typedef vector<vl> vvl; #define FOR(i,a,b) for(ll i=a;i<b;i++) #define rep(i,n) FOR(i,0,n) string abc="abcdefghijklmnopqrstuvwxyz"; string ABC="ABCDEFGHIJKLMNOPQRSTUVWXYZ"; int main() { string a,b; cin >> a >> b; ll A=a.size(); ll B=b.size(); if(A>B){ x=1; } else if(A<B){ x=-1; } else{ if(A>B){ x=1; } else if(B>A){ x=-1; } else x=0; } if(x==0){ cout << "EQUAL" << endl; } else if(x==1){ cout << "GREATER" << endl; } else{ cout << "LESS" << endl; } }
a.cc: In function 'int main()': a.cc:21:5: error: 'x' was not declared in this scope 21 | x=1; | ^ a.cc:24:5: error: 'x' was not declared in this scope 24 | x=-1; | ^ a.cc:28:7: error: 'x' was not declared in this scope 28 | x=1; | ^ a.cc:31:7: error: 'x' was not declared in this scope 31 | x=-1; | ^ a.cc:34:7: error: 'x' was not declared in this scope 34 | x=0; | ^ a.cc:36:6: error: 'x' was not declared in this scope 36 | if(x==0){ | ^
s551784888
p03738
C++
#include <bits/stdc++.h> using namespace std; #define ll long long #define vecll vector<long long> #define vec2ll vector<vector<long long>> #define vecbool vector<bool> #define vecpairll vector<pair<long long,long long>> #define forll(s,a,b) for(long long s = a;s < b;s++) #define forllde(s,a) for(long long s = a;s > 0;s--) int main() { string a, b; cin >> a >> b; if (a == b) cout << "EQUAL" else if (a.length() > b.length()) cout << "GREATER"; else if (a.length() < b.length()) cout << "LESS"; else{ if (a > b) cout << "GREATER"; else cout << "LESS"; } }
a.cc: In function 'int main()': a.cc:17:24: error: expected ';' before 'else' 17 | cout << "EQUAL" | ^ | ; 18 | else if (a.length() > b.length()) | ~~~~
s341706849
p03738
C++
#include <bits/stdc++.h> using namespace std; using ll = __SIZEOF_DOUBLE__; #define REP(i, n) for (ll i = 0; i < n; i++) #define INF 9223372036854775807 #define all(x) (x).begin(), (x).end() ll ts = 1000000007; int main() { ios::sync_with_stdio(false); cin.tie(0); ll a, b; cin >> a >> b; if (a > b) cout << "GREATER" << "\n"; else if (a < b) cout << "LESS" << "\n"; else cout << "EQUAL" << "\n"; }
a.cc:4:12: error: expected type-specifier before numeric constant 4 | using ll = __SIZEOF_DOUBLE__; | ^~~~~~~~~~~~~~~~~ a.cc:10:1: error: 'll' does not name a type; did you mean 'all'? 10 | ll ts = 1000000007; | ^~ | all a.cc: In function 'int main()': a.cc:16:3: error: 'll' was not declared in this scope; did you mean 'all'? 16 | ll a, b; | ^~ | all a.cc:17:10: error: 'a' was not declared in this scope 17 | cin >> a >> b; | ^ a.cc:17:15: error: 'b' was not declared in this scope 17 | cin >> a >> b; | ^
s227642907
p03738
C++
#include<bits/stdc++.h> using namespace std; int main(){ string A,B; cin>>A>>B; int N=A.size(); int M=B.size(); if(A<B) cout<<"LESS"<<endl; else if(A>B) cout<<"GREATER"<<endl; else{ ans="EQUAL"; for(int i=0;i<A;i++){ if(B.at(i)<A.at(i)){ ans="GREATER"; break; }if(A.at(i)<B.at(i)){ ans="LESS"; break; } }cout<<ans<<endl; } return 0; }
a.cc: In function 'int main()': a.cc:13:3: error: 'ans' was not declared in this scope; did you mean 'abs'? 13 | ans="EQUAL"; | ^~~ | abs a.cc:14:18: error: no match for 'operator<' (operand types are 'int' and 'std::string' {aka 'std::__cxx11::basic_string<char>'}) 14 | for(int i=0;i<A;i++){ | ~^~ | | | | | std::string {aka std::__cxx11::basic_string<char>} | int In file included from /usr/include/c++/14/regex:68, from /usr/include/x86_64-linux-gnu/c++/14/bits/stdc++.h:181, from a.cc:1: /usr/include/c++/14/bits/regex.h:1143:5: note: candidate: 'template<class _BiIter> bool std::__cxx11::operator<(const sub_match<_BiIter>&, const sub_match<_BiIter>&)' 1143 | operator<(const sub_match<_BiIter>& __lhs, const sub_match<_BiIter>& __rhs) | ^~~~~~~~ /usr/include/c++/14/bits/regex.h:1143:5: note: template argument deduction/substitution failed: a.cc:14:19: note: mismatched types 'const std::__cxx11::sub_match<_BiIter>' and 'int' 14 | for(int i=0;i<A;i++){ | ^ /usr/include/c++/14/bits/regex.h:1224:5: note: candidate: 'template<class _Bi_iter, class _Ch_traits, class _Ch_alloc> bool std::__cxx11::operator<(__sub_match_string<_Bi_iter, _Ch_traits, _Ch_alloc>&, const sub_match<_BiIter>&)' 1224 | operator<(const __sub_match_string<_Bi_iter, _Ch_traits, _Ch_alloc>& __lhs, | ^~~~~~~~ /usr/include/c++/14/bits/regex.h:1224:5: note: template argument deduction/substitution failed: a.cc:14:19: note: mismatched types 'std::__cxx11::__sub_match_string<_Bi_iter, _Ch_traits, _Ch_alloc>' and 'int' 14 | for(int i=0;i<A;i++){ | ^ /usr/include/c++/14/bits/regex.h:1317:5: note: candidate: 'template<class _Bi_iter, class _Ch_traits, class _Ch_alloc> bool std::__cxx11::operator<(const sub_match<_BiIter>&, __sub_match_string<_Bi_iter, _Ch_traits, _Ch_alloc>&)' 1317 | operator<(const sub_match<_Bi_iter>& __lhs, | ^~~~~~~~ /usr/include/c++/14/bits/regex.h:1317:5: note: template argument deduction/substitution failed: a.cc:14:19: note: mismatched types 'const std::__cxx11::sub_match<_BiIter>' and 'int' 14 | for(int i=0;i<A;i++){ | ^ /usr/include/c++/14/bits/regex.h:1391:5: note: candidate: 'template<class _Bi_iter> bool std::__cxx11::operator<(const typename std::iterator_traits<_Iter>::value_type*, const sub_match<_BiIter>&)' 1391 | operator<(typename iterator_traits<_Bi_iter>::value_type const* __lhs, | ^~~~~~~~ /usr/include/c++/14/bits/regex.h:1391:5: note: template argument deduction/substitution failed: a.cc:14:19: note: 'std::string' {aka 'std::__cxx11::basic_string<char>'} is not derived from 'const std::__cxx11::sub_match<_BiIter>' 14 | for(int i=0;i<A;i++){ | ^ /usr/include/c++/14/bits/regex.h:1485:5: note: candidate: 'template<class _Bi_iter> bool std::__cxx11::operator<(const sub_match<_BiIter>&, const typename std::iterator_traits<_Iter>::value_type*)' 1485 | operator<(const sub_match<_Bi_iter>& __lhs, | ^~~~~~~~ /usr/include/c++/14/bits/regex.h:1485:5: note: template argument deduction/substitution failed: a.cc:14:19: note: mismatched types 'const std::__cxx11::sub_match<_BiIter>' and 'int' 14 | for(int i=0;i<A;i++){ | ^ /usr/include/c++/14/bits/regex.h:1560:5: note: candidate: 'template<class _Bi_iter> bool std::__cxx11::operator<(const typename std::iterator_traits<_Iter>::value_type&, const sub_match<_BiIter>&)' 1560 | operator<(typename iterator_traits<_Bi_iter>::value_type const& __lhs, | ^~~~~~~~ /usr/include/c++/14/bits/regex.h:1560:5: note: template argument deduction/substitution failed: a.cc:14:19: note: 'std::string' {aka 'std::__cxx11::basic_string<char>'} is not derived from 'const std::__cxx11::sub_match<_BiIter>' 14 | for(int i=0;i<A;i++){ | ^ /usr/include/c++/14/bits/regex.h:1660:5: note: candidate: 'template<class _Bi_iter> bool std::__cxx11::operator<(const sub_match<_BiIter>&, const typename std::iterator_traits<_Iter>::value_type&)' 1660 | operator<(const sub_match<_Bi_iter>& __lhs, | ^~~~~~~~ /usr/include/c++/14/bits/regex.h:1660:5: note: template argument deduction/substitution failed: a.cc:14:19: note: mismatched types 'const std::__cxx11::sub_match<_BiIter>' and 'int' 14 | for(int i=0;i<A;i++){ | ^ In file included from /usr/include/c++/14/bits/stl_algobase.h:64, from /usr/include/c++/14/algorithm:60, from /usr/include/x86_64-linux-gnu/c++/14/bits/stdc++.h:51: /usr/include/c++/14/bits/stl_pair.h:1045:5: note: candidate: 'template<class _T1, class _T2> constexpr bool std::operator<(const pair<_T1, _T2>&, const pair<_T1, _T2>&)' 1045 | operator<(const pair<_T1, _T2>& __x, const pair<_T1, _T2>& __y) | ^~~~~~~~ /usr/include/c++/14/bits/stl_pair.h:1045:5: note: template argument deduction/substitution failed: a.cc:14:19: note: mismatched types 'const std::pair<_T1, _T2>' and 'int' 14 | for(int i=0;i<A;i++){ | ^ In file included from /usr/include/c++/14/bits/stl_algobase.h:67: /usr/include/c++/14/bits/stl_iterator.h:448:5: note: candidate: 'template<class _Iterator> constexpr bool std::operator<(const reverse_iterator<_Iterator>&, const reverse_iterator<_Iterator>&)' 448 | operator<(const reverse_iterator<_Iterator>& __x, | ^~~~~~~~ /usr/include/c++/14/bits/stl_iterator.h:448:5: note: template argument deduction/substitution failed: a.cc:14:19: note: mismatched types 'const std::reverse_iterator<_Iterator>' and 'int' 14 | for(int i=0;i<A;i++){ | ^ /usr/include/c++/14/bits/stl_iterator.h:493:5: note: candidate: 'template<class _IteratorL, class _IteratorR> constexpr bool std::operator<(const reverse_iterator<_Iterator>&, const reverse_iterator<_IteratorR>&)' 493 | operator<(const reverse_iterator<_IteratorL>& __x, | ^~~~~~~~ /usr/include/c++/14/bits/stl_iterator.h:493:5: note: template argument deduction/substitution failed: a.cc:14:19: note: mismatched types 'const std::reverse_iterator<_Iterator>' and 'int' 14 | for(int i=0;i<A;i++){ | ^ /usr/include/c++/14/bits/stl_iterator.h:1694:5: note: candidate: 'template<class _IteratorL, class _IteratorR> constexpr bool std::operator<(const move_iterator<_IteratorL>&, const move_iterator<_IteratorR>&)' 1694 | operator<(const move_iterator<_IteratorL>& __x, | ^~~~~~~~ /usr/include/c++/14/bits/stl_iterator.h:1694:5: note: template argument deduction/substitution failed: a.cc:14:19: note: mismatched types 'const std::move_iterator<_IteratorL>' and 'int' 14 | for(int i=0;i<A;i++){ | ^ /usr/include/c++/14/bits/stl_iterator.h:1760:5: note: candidate: 'template<class _Iterator> constexpr bool std::operator<(const move_iterator<_IteratorL>&, const move_iterator<_IteratorL>&)' 1760 | operator<(const move_iterator<_Iterator>& __x, | ^~~~~~~~ /usr/include/c++/14/bits/stl_iterator.h:1760:5: note: template argument deduction/substitution failed: a.cc:14:19: note: mismatched types 'const std::move_iterator<_IteratorL>' and 'int' 14 | for(int i=0;i<A;i++){ | ^ In file included from /usr/include/c++/14/bits/basic_string.h:47, from /usr/include/c++/14/string:54, from /usr/include/c++/14/bitset:52, from /usr/include/x86_64-linux-gnu/c++/14/bits/stdc++.h:52: /usr/include/c++/14/string_view:673:5: note: candidate: 'template<class _CharT, class _Traits> constexpr bool std::operator<(basic_string_view<_CharT, _Traits>, basic_string_view<_CharT, _Traits>)' 673 | operator< (basic_string_view<_CharT, _Traits> __x, | ^~~~~~~~ /usr/include/c++/14/string_view:673:5: note: template argument deduction/substitution failed: a.cc:14:19: note: mismatched types 'std::basic_string_view<_CharT, _Traits>' and 'int' 14 | for(int i=0;i<A;i++){ | ^ /usr/include/c++/14/string_view:680:5: note: candidate: 'template<class _CharT, class _Traits> constexpr bool std::operator<(basic_string_view<_CharT, _Traits>, __type_identity_t<basic_string_view<_CharT, _Traits> >)' 680 | operator< (basic_string_view<_CharT, _Traits> __x, | ^~~~~~~~ /usr/include/c++/14/string_view:680:5: note: template argument deduction/substitution failed: a.cc:14:19: note: mismatched types 'std::basic_string_view<_CharT, _Traits>' and 'int' 14 | for(int i=0;i<A;i++){ | ^ /usr/include/c++/14/string_view:688:5: note: candidate: 'template<class _CharT, class _Traits> constexpr bool std::operator<(__type_identity_t<basic_string_view<_CharT, _Traits> >, basic_string_view<_CharT, _Traits>)' 688 | operator< (__type_identity_t<basic_string_view<_CharT, _Traits>> __x, | ^~~~~~~~ /usr/include/c++/14/string_view:688:5: note: template argument deduction/substitution failed: a.cc:14:19: note: 'std::__cxx11::basic_string<char>' is not derived from 'std::basic_string_view<_CharT, _Traits>' 14 | for(int i=0;i<A;i++){ | ^ /usr/include/c++/14/bits/basic_string.h:3874:5: note: candidate: 'template<class _CharT, class _Traits, class _Alloc> bool std::operator<(const __cxx11::basic_string<_CharT, _Traits, _Allocator>&, const __cxx11::basic_string<_CharT, _Traits, _Allocator>&)' 3874 | operator<(const basic_string<_CharT, _Traits, _Alloc>& __lhs, | ^~~~~~~~ /usr/include/c++/14/bits/basic_string.h:3874:5: note: template argument deduction/substitution failed: a.cc:14:19: note: mismatched types 'const std::__cxx11::basic_string<_CharT, _Traits, _Allocator>' and 'int' 14 | for(int i=0;i<A;i++){ | ^ /usr/include/c++/14/bits/basic_string.h:3888:5: note: candidate: 'template<class _CharT, class _Traits, class _Alloc> bool std::operator<(const __cxx11::basic_string<_CharT, _Traits, _Alloc
s742000628
p03738
C++
#include<Stdio.h> int main(void){ long long int a,b; scanf("%lld %lld",&a,&b); if(a>b){ printf("GREATER"); }else if(a<b){ printf("LESS"); }else{ printf("EQUAL"); } return 0; }
a.cc:1:9: fatal error: Stdio.h: No such file or directory 1 | #include<Stdio.h> | ^~~~~~~~~ compilation terminated.
s285951924
p03738
C++
#include <bits/stdc++.h> using namespace std; typedef long long int ll; #define rep(i,n) for(int i=0;i<n;++i) int main(){ string A,B; cin >> A >> B; if(A.size()>B.size()){ cout << "GREATER" << endl; }else if(A.size()<B.size()){ cout << "LESS" << endl; }else{ bool b = 1 rep(i,A.size()){ if(A.at(i)>B.at(i)){ cout << "GREATER" << endl; b = 0; break; }else if(A.at(i)<B.at(i)){ cout << "LESS" << endl; b = 0; break; } } if(b){ cout << "EQUAL" << endl; } } }
a.cc: In function 'int main()': a.cc:4:18: error: expected ',' or ';' before 'for' 4 | #define rep(i,n) for(int i=0;i<n;++i) | ^~~ a.cc:15:5: note: in expansion of macro 'rep' 15 | rep(i,A.size()){ | ^~~ a.cc:15:9: error: 'i' was not declared in this scope 15 | rep(i,A.size()){ | ^ a.cc:4:30: note: in definition of macro 'rep' 4 | #define rep(i,n) for(int i=0;i<n;++i) | ^
s504068245
p03738
C++
#include <bits/stdc++.h> using namespace std; typedef long long int ll; #define rep(i,n) for(int i=0;i<n;++i) int main(){ string A,B; cin >> A >> B; if(.size()>B.size()){ cout << "GREATER" << endl; }else if(A.size()<B.size()){ cout << "LESS" << endl; }else{ bool b = 1 rep(i,A.size()){ if(A.at(i)>B.at(i)){ cout << "GREATER" << endl; b = 0; break; }else if(A.at(i)<B.at(i)){ cout << "LESS" << endl; b = 0; break; } } if(b){ cout << "EQUAL" << endl; } } }
a.cc: In function 'int main()': a.cc:9:6: error: expected primary-expression before '.' token 9 | if(.size()>B.size()){ | ^ a.cc:4:18: error: expected ',' or ';' before 'for' 4 | #define rep(i,n) for(int i=0;i<n;++i) | ^~~ a.cc:15:5: note: in expansion of macro 'rep' 15 | rep(i,A.size()){ | ^~~ a.cc:15:9: error: 'i' was not declared in this scope 15 | rep(i,A.size()){ | ^ a.cc:4:30: note: in definition of macro 'rep' 4 | #define rep(i,n) for(int i=0;i<n;++i) | ^
s232220722
p03738
C++
#include <bits/stdc++.h> using namespace std; typedef long long int ll; int main(){ string A,B; cin >> A >> B; if(.size()>B.size()){ cout << "GREATER" << endl; }else if(A.size()<B.size()){ cout << "LESS" << endl; }else{ bool b = 1 rep(i,A.size()){ if(A.at(i)>B.at(i)){ cout << "GREATER" << endl; b = 0; break; }else if(A.at(i)<B.at(i)){ cout << "LESS" << endl; b = 0; break; } } if(b){ cout << "EQUAL" << endl; } } }
a.cc: In function 'int main()': a.cc:8:6: error: expected primary-expression before '.' token 8 | if(.size()>B.size()){ | ^ a.cc:14:5: error: expected ',' or ';' before 'rep' 14 | rep(i,A.size()){ | ^~~
s211953792
p03738
C++
A = int(input()) B = int(input()) if A > B: print('GREATER') elif A < B: print('LESS') else: print('EQUAL')
a.cc:4:11: warning: multi-character literal with 7 characters exceeds 'int' size of 4 bytes 4 | print('GREATER') | ^~~~~~~~~ a.cc:6:11: warning: multi-character character constant [-Wmultichar] 6 | print('LESS') | ^~~~~~ a.cc:8:11: warning: multi-character literal with 5 characters exceeds 'int' size of 4 bytes 8 | print('EQUAL') | ^~~~~~~ a.cc:1:1: error: 'A' does not name a type 1 | A = int(input()) | ^
s864352101
p03738
C++
V#include <cctype> #include <cerrno> #include <cfloat> #include <ciso646> #include <climits> #include <clocale> #include <cmath> #include <csetjmp> #include <csignal> #include <cstdarg> #include <cstddef> #include <cstdio> #include <cstdlib> #include <cstring> #include <ctime> #include <algorithm> #include <bitset> #include <complex> #include <deque> #include <exception> #include <fstream> #include <functional> #include <iomanip> #include <ios> #include <iosfwd> #include <iostream> #include <istream> #include <iterator> #include <limits> #include <list> #include <locale> #include <map> #include <memory> #include <new> #include <numeric> #include <ostream> #include <queue> #include <set> #include <sstream> #include <stack> #include <stdexcept> #include <streambuf> #include <string> #include <typeinfo> #include <utility> #include <valarray> #include <vector> #include <regex> #define REP(i,n) for(int i = 0; i < n; i++) #define FOR(i,j,n) for(int i = j; i < n; i++) #define RFOR(i,j,n) for(int i = j-1; i >= n; i--) #define PREC(n) fixed << setprecision(n) #define print_array(v) REP(__k, v.size()) { cout << v[__k]; if(__k != v.size()-1) cout << " "; else cout << endl; } value #define YesorNo(a) printf(a?"Yes\n":"No\n") #define _LIBCPP_DEBUG 0 using namespace std; int main() { cin.tie(0); ios::sync_with_stdio(false); string a, b; cin >> a >> b; if(a == b) cout << "EQUAL" << endl; else if(a.size() > b.size()) cout << "GREATER" << endl; else if(a.size() < b.size()) cout << "LESS" << endl; else if(a.size() == b.size()) { REP(i,a.size()) { if(a[i]>b[i]) { cout << "GREATER" << endl; break; } if(a[i]<b[i]) { cout << "LESS" << endl; break; } } } }
a.cc:1:2: error: stray '#' in program 1 | V#include <cctype> | ^ a.cc:1:1: error: 'V' does not name a type 1 | V#include <cctype> | ^ In file included from /usr/include/c++/14/cmath:45, from a.cc:7: /usr/include/c++/14/ext/type_traits.h:164:35: error: 'constexpr const bool __gnu_cxx::__is_null_pointer' redeclared as different kind of entity 164 | __is_null_pointer(std::nullptr_t) | ^ /usr/include/c++/14/ext/type_traits.h:159:5: note: previous declaration 'template<class _Type> constexpr bool __gnu_cxx::__is_null_pointer(_Type)' 159 | __is_null_pointer(_Type) | ^~~~~~~~~~~~~~~~~ /usr/include/c++/14/ext/type_traits.h:164:26: error: 'nullptr_t' is not a member of 'std' 164 | __is_null_pointer(std::nullptr_t) | ^~~~~~~~~ In file included from /usr/include/c++/14/bits/stl_pair.h:60, from /usr/include/c++/14/bits/stl_algobase.h:64, from /usr/include/c++/14/bits/specfun.h:43, from /usr/include/c++/14/cmath:3906: /usr/include/c++/14/type_traits:666:33: error: 'nullptr_t' is not a member of 'std' 666 | struct is_null_pointer<std::nullptr_t> | ^~~~~~~~~ /usr/include/c++/14/type_traits:666:42: error: template argument 1 is invalid 666 | struct is_null_pointer<std::nullptr_t> | ^ /usr/include/c++/14/type_traits:670:48: error: template argument 1 is invalid 670 | struct is_null_pointer<const std::nullptr_t> | ^ /usr/include/c++/14/type_traits:674:51: error: template argument 1 is invalid 674 | struct is_null_pointer<volatile std::nullptr_t> | ^ /usr/include/c++/14/type_traits:678:57: error: template argument 1 is invalid 678 | struct is_null_pointer<const volatile std::nullptr_t> | ^ /usr/include/c++/14/type_traits:1429:37: error: 'size_t' is not a member of 'std'; did you mean 'size_t'? 1429 | : public integral_constant<std::size_t, alignof(_Tp)> | ^~~~~~ In file included from /usr/include/stdlib.h:32, from /usr/include/c++/14/bits/std_abs.h:38, from /usr/include/c++/14/cmath:49: /usr/lib/gcc/x86_64-linux-gnu/14/include/stddef.h:214:23: note: 'size_t' declared here 214 | typedef __SIZE_TYPE__ size_t; | ^~~~~~ /usr/include/c++/14/type_traits:1429:57: error: template argument 1 is invalid 1429 | : public integral_constant<std::size_t, alignof(_Tp)> | ^ /usr/include/c++/14/type_traits:1429:57: note: invalid template non-type parameter /usr/include/c++/14/type_traits:1438:37: error: 'size_t' is not a member of 'std'; did you mean 'size_t'? 1438 | : public integral_constant<std::size_t, 0> { }; | ^~~~~~ /usr/lib/gcc/x86_64-linux-gnu/14/include/stddef.h:214:23: note: 'size_t' declared here 214 | typedef __SIZE_TYPE__ size_t; | ^~~~~~ /usr/include/c++/14/type_traits:1438:46: error: template argument 1 is invalid 1438 | : public integral_constant<std::size_t, 0> { }; | ^ /usr/include/c++/14/type_traits:1438:46: note: invalid template non-type parameter /usr/include/c++/14/type_traits:1440:26: error: 'std::size_t' has not been declared 1440 | template<typename _Tp, std::size_t _Size> | ^~~ /usr/include/c++/14/type_traits:1441:21: error: '_Size' was not declared in this scope 1441 | struct rank<_Tp[_Size]> | ^~~~~ /usr/include/c++/14/type_traits:1441:27: error: template argument 1 is invalid 1441 | struct rank<_Tp[_Size]> | ^ /usr/include/c++/14/type_traits:1442:37: error: 'size_t' is not a member of 'std'; did you mean 'size_t'? 1442 | : public integral_constant<std::size_t, 1 + rank<_Tp>::value> { }; | ^~~~~~ /usr/lib/gcc/x86_64-linux-gnu/14/include/stddef.h:214:23: note: 'size_t' declared here 214 | typedef __SIZE_TYPE__ size_t; | ^~~~~~ /usr/include/c++/14/type_traits:1442:65: error: template argument 1 is invalid 1442 | : public integral_constant<std::size_t, 1 + rank<_Tp>::value> { }; | ^ /usr/include/c++/14/type_traits:1442:65: note: invalid template non-type parameter /usr/include/c++/14/type_traits:1446:37: error: 'size_t' is not a member of 'std'; did you mean 'size_t'? 1446 | : public integral_constant<std::size_t, 1 + rank<_Tp>::value> { }; | ^~~~~~ /usr/lib/gcc/x86_64-linux-gnu/14/include/stddef.h:214:23: note: 'size_t' declared here 214 | typedef __SIZE_TYPE__ size_t; | ^~~~~~ /usr/include/c++/14/type_traits:1446:65: error: template argument 1 is invalid 1446 | : public integral_constant<std::size_t, 1 + rank<_Tp>::value> { }; | ^ /usr/include/c++/14/type_traits:1446:65: note: invalid template non-type parameter /usr/include/c++/14/type_traits:2086:26: error: 'std::size_t' has not been declared 2086 | template<typename _Tp, std::size_t _Size> | ^~~ /usr/include/c++/14/type_traits:2087:30: error: '_Size' was not declared in this scope 2087 | struct remove_extent<_Tp[_Size]> | ^~~~~ /usr/include/c++/14/type_traits:2087:36: error: template argument 1 is invalid 2087 | struct remove_extent<_Tp[_Size]> | ^ /usr/include/c++/14/type_traits:2099:26: error: 'std::size_t' has not been declared 2099 | template<typename _Tp, std::size_t _Size> | ^~~ /usr/include/c++/14/type_traits:2100:35: error: '_Size' was not declared in this scope 2100 | struct remove_all_extents<_Tp[_Size]> | ^~~~~ /usr/include/c++/14/type_traits:2100:41: error: template argument 1 is invalid 2100 | struct remove_all_extents<_Tp[_Size]> | ^ /usr/include/c++/14/type_traits:2171:12: error: 'std::size_t' has not been declared 2171 | template<std::size_t _Len> | ^~~ /usr/include/c++/14/type_traits:2176:30: error: '_Len' was not declared in this scope 2176 | unsigned char __data[_Len]; | ^~~~ /usr/include/c++/14/type_traits:2194:12: error: 'std::size_t' has not been declared 2194 | template<std::size_t _Len, std::size_t _Align = | ^~~ /usr/include/c++/14/type_traits:2194:30: error: 'std::size_t' has not been declared 2194 | template<std::size_t _Len, std::size_t _Align = | ^~~ /usr/include/c++/14/type_traits:2195:55: error: '_Len' was not declared in this scope 2195 | __alignof__(typename __aligned_storage_msa<_Len>::__type)> | ^~~~ /usr/include/c++/14/type_traits:2195:59: error: template argument 1 is invalid 2195 | __alignof__(typename __aligned_storage_msa<_Len>::__type)> | ^ /usr/include/c++/14/type_traits:2202:30: error: '_Len' was not declared in this scope 2202 | unsigned char __data[_Len]; | ^~~~ /usr/include/c++/14/type_traits:2203:44: error: '_Align' was not declared in this scope 2203 | struct __attribute__((__aligned__((_Align)))) { } __align; | ^~~~~~ In file included from /usr/include/c++/14/bits/stl_algobase.h:65: /usr/include/c++/14/bits/stl_iterator_base_types.h:125:67: error: 'ptrdiff_t' does not name a type 125 | template<typename _Category, typename _Tp, typename _Distance = ptrdiff_t, | ^~~~~~~~~ /usr/include/c++/14/bits/stl_iterator_base_types.h:1:1: note: 'ptrdiff_t' is defined in header '<cstddef>'; this is probably fixable by adding '#include <cstddef>' +++ |+#include <cstddef> 1 | // Types used in iterator implementation -*- C++ -*- /usr/include/c++/14/bits/stl_iterator_base_types.h:214:15: error: 'ptrdiff_t' does not name a type 214 | typedef ptrdiff_t difference_type; | ^~~~~~~~~ /usr/include/c++/14/bits/stl_iterator_base_types.h:214:15: note: 'ptrdiff_t' is defined in header '<cstddef>'; this is probably fixable by adding '#include <cstddef>' /usr/include/c++/14/bits/stl_iterator_base_types.h:225:15: error: 'ptrdiff_t' does not name a type 225 | typedef ptrdiff_t difference_type; | ^~~~~~~~~ /usr/include/c++/14/bits/stl_iterator_base_types.h:225:15: note: 'ptrdiff_t' is defined in header '<cstddef>'; this is probably fixable by adding '#include <cstddef>' In file included from /usr/include/c++/14/bits/stl_algobase.h:66: /usr/include/c++/14/bits/stl_iterator_base_funcs.h:112:5: error: 'ptrdiff_t' does not name a type 112 | ptrdiff_t | ^~~~~~~~~ /usr/include/c++/14/bits/stl_iterator_base_funcs.h:66:1: note: 'ptrdiff_t' is defined in header '<cstddef>'; this is probably fixable by adding '#include <cstddef>' 65 | #include <debug/assertions.h> +++ |+#include <cstddef> 66 | #include <bits/stl_iterator_base_types.h> /usr/include/c++/14/bits/stl_iterator_base_funcs.h:118:5: error: 'ptrdiff_t' does not name a type 118 | ptrdiff_t | ^~~~~~~~~ /usr/include/c++/14/bits/stl_iterator_base_funcs.h:118:5: note: 'ptrdiff_t' is defined in header '<cstddef>'; this is probably fixable by adding '#include <cstddef>' In file included from /usr/include/c++/14/bits/stl_iterator.h:67, from /us
s072847259
p03738
C++
using System; using System.Collections.Generic; using System.Linq; using static System.Math; using static _20200413.abc059_b.Cin; using static _20200413.abc059_b.Util; using Pair = _20200413.abc059_b.VTuple<long, long>; /// <summary> /// abc059 /// B - Comparison /// https://atcoder.jp/contests/abc059/tasks/abc059_b /// </summary> namespace _20200413.abc059_b { public class Program { public static void Main(string[] args) { string A = rs; string B = rs; int len = Max(A.Length, B.Length); int adiff = len - A.Length; if (adiff > 0) A = new string('0', adiff) + A; int bdiff = len - B.Length; if (bdiff > 0) B = new string('0', bdiff) + B; var res = Comparer<string>.Default.Compare(A, B); if (res < 0) { Console.WriteLine("LESS"); } else if (res > 0) { Console.WriteLine("GREATER"); } else { Console.WriteLine("EQUAL"); } } } /// <summary> /// 競プロライブラリ /// https://github.com/ha2ne2/ABC/tree/master/Lib /// </summary> public struct Mint:System.IComparable<Mint>,System.IEquatable<Mint>{public static readonly long MOD=(long)1e9+7;public long Value;public Mint(long val){Value=val%MOD;if(Value<0)Value+=MOD;}private static Mint Ctor(long val){return new Mint(){Value=val};}public static Mint operator+(Mint a,Mint b){long res=a.Value+b.Value;if(res>MOD)res-=MOD;return Ctor(res);}public static Mint operator-(Mint a,Mint b){long res=a.Value-b.Value;if(res<0)res+=MOD;return Ctor(res);}public static Mint operator*(Mint a,Mint b){long res=a.Value*b.Value;if(res>MOD)res%=MOD;return Ctor(res);}public static Mint operator/(Mint a,Mint b){return a*Inv(b);}public override bool Equals(object obj){return obj is Mint&&Value==((Mint)obj).Value;}public override int GetHashCode(){return Value.GetHashCode();}public override string ToString(){return Value.ToString();}public static implicit operator Mint(long a){return new Mint(a);}public static explicit operator long(Mint a){return a.Value;}public static Mint Pow(Mint a,long n){if(n==0)return new Mint(1);Mint b=Pow(a,n>>1);b*=b;if((n&1)==1)b*=a;return b;}public static Mint Inv(Mint n){long a=n.Value;long b=MOD;long x=1;long u=0;while(b!=0){long k=a/b;long _x=u;u=x-k*u;x=_x;long _a=a;a=b;b=_a-(k*b);}return new Mint(x);}public bool Equals(Mint other){return Value==other.Value;}public int CompareTo(Mint other){return Comparer<long>.Default.Compare(Value,other.Value);}}public class HashMap<K,V>:System.Collections.Generic.Dictionary<K,V>{private V DefaultValue;private static Func<V>CreateInstance=System.Linq.Expressions.Expression.Lambda<Func<V>>(System.Linq.Expressions.Expression.New(typeof(V))).Compile();public HashMap(){}public HashMap(V defaultValue){DefaultValue=defaultValue;}new public V this[K i]{get{V v;if(TryGetValue(i,out v)){return v;}else{return base[i]=DefaultValue!=null?DefaultValue:CreateInstance();}}set{base[i]=value;}}}public struct VTuple<T1,T2>:System.IComparable<VTuple<T1,T2>>,System.IEquatable<VTuple<T1,T2>>{public T1 Item1;public T2 Item2;public T1 First{get{return Item1;}}public T2 Second{get{return Item2;}}public VTuple(T1 item1,T2 item2){Item1=item1;Item2=item2;}public override bool Equals(object obj){return obj is VTuple<T1,T2>&&Equals((VTuple<T1,T2>)obj);}public override int GetHashCode(){int h1=Item1!=null?Item1.GetHashCode():0;int h2=Item2!=null?Item2.GetHashCode():0;return HashHelpers.CombineHashCodes(h1,h2);}public override string ToString(){return"("+Item1?.ToString()+", "+Item2?.ToString()+")";}public bool Equals(VTuple<T1,T2>other){return EqualityComparer<T1>.Default.Equals(Item1,other.Item1)&&EqualityComparer<T2>.Default.Equals(Item2,other.Item2);}public int CompareTo(VTuple<T1,T2>other){int c=Comparer<T1>.Default.Compare(Item1,other.Item1);if(c!=0)return c;return Comparer<T2>.Default.Compare(Item2,other.Item2);}}public struct VTuple3<T1,T2,T3>:System.IComparable<VTuple3<T1,T2,T3>>,System.IEquatable<VTuple3<T1,T2,T3>>{public T1 Item1;public T2 Item2;public T3 Item3;public VTuple3(T1 item1,T2 item2,T3 item3){Item1=item1;Item2=item2;Item3=item3;}public override bool Equals(object obj){return obj is VTuple3<T1,T2,T3>&&Equals((VTuple3<T1,T2,T3>)obj);}public override int GetHashCode(){int h1=Item1!=null?Item1.GetHashCode():0;int h2=Item2!=null?Item2.GetHashCode():0;int h3=Item3!=null?Item3.GetHashCode():0;return HashHelpers.CombineHashCodes(h1,h2,h3);}public override string ToString(){return"("+Item1?.ToString()+", "+Item2?.ToString()+", "+Item3?.ToString()+")";}public bool Equals(VTuple3<T1,T2,T3>other){return EqualityComparer<T1>.Default.Equals(Item1,other.Item1)&&EqualityComparer<T2>.Default.Equals(Item2,other.Item2)&&EqualityComparer<T3>.Default.Equals(Item3,other.Item3);}public int CompareTo(VTuple3<T1,T2,T3>other){int c=Comparer<T1>.Default.Compare(Item1,other.Item1);if(c!=0)return c;c=Comparer<T2>.Default.Compare(Item2,other.Item2);if(c!=0)return c;return Comparer<T3>.Default.Compare(Item3,other.Item3);}}public struct VTuple4<T1,T2,T3,T4>:System.IComparable<VTuple4<T1,T2,T3,T4>>,System.IEquatable<VTuple4<T1,T2,T3,T4>>{public T1 Item1;public T2 Item2;public T3 Item3;public T4 Item4;public VTuple4(T1 item1,T2 item2,T3 item3,T4 item4){Item1=item1;Item2=item2;Item3=item3;Item4=item4;}public override bool Equals(object obj){return obj is VTuple4<T1,T2,T3,T4>&&Equals((VTuple4<T1,T2,T3,T4>)obj);}public override int GetHashCode(){int h1=Item1!=null?Item1.GetHashCode():0;int h2=Item2!=null?Item2.GetHashCode():0;int h3=Item3!=null?Item3.GetHashCode():0;int h4=Item3!=null?Item4.GetHashCode():0;return HashHelpers.CombineHashCodes(h1,h2,h3,h4);}public override string ToString(){return"("+Item1?.ToString()+", "+Item2?.ToString()+", "+Item3?.ToString()+", "+Item4?.ToString()+")";}public bool Equals(VTuple4<T1,T2,T3,T4>other){return EqualityComparer<T1>.Default.Equals(Item1,other.Item1)&&EqualityComparer<T2>.Default.Equals(Item2,other.Item2)&&EqualityComparer<T3>.Default.Equals(Item3,other.Item3)&&EqualityComparer<T4>.Default.Equals(Item4,other.Item4);}public int CompareTo(VTuple4<T1,T2,T3,T4>other){int c=Comparer<T1>.Default.Compare(Item1,other.Item1);if(c!=0)return c;c=Comparer<T2>.Default.Compare(Item2,other.Item2);if(c!=0)return c;c=Comparer<T3>.Default.Compare(Item3,other.Item3);if(c!=0)return c;return Comparer<T4>.Default.Compare(Item4,other.Item4);}}public static class HashHelpers{public static readonly int RandomSeed=new System.Random().Next(int.MinValue,int.MaxValue);public static int Combine(int h1,int h2){uint rol5=((uint)h1<<5)|((uint)h1>>27);return((int)rol5+h1)^h2;}public static int CombineHashCodes(int h1,int h2){return Combine(Combine(RandomSeed,h1),h2);}public static int CombineHashCodes(int h1,int h2,int h3){return Combine(CombineHashCodes(h1,h2),h3);}public static int CombineHashCodes(int h1,int h2,int h3,int h4){return Combine(CombineHashCodes(h1,h2,h3),h4);}}public static class Cin{public static int ri{get{return ReadInt();}}public static int[]ria{get{return ReadIntArray();}}public static long rl{get{return ReadLong();}}public static long[]rla{get{return ReadLongArray();}}public static double rd{get{return ReadDouble();}}public static double[]rda{get{return ReadDoubleArray();}}public static string rs{get{return ReadString();}}public static string[]rsa{get{return ReadStringArray();}}public static int ReadInt(){return int.Parse(Next());}public static long ReadLong(){return long.Parse(Next());}public static double ReadDouble(){return double.Parse(Next());}public static string ReadString(){return Next();}public static int[]ReadIntArray(){Tokens=null;return Array.ConvertAll(Console.ReadLine().Split(' '),int.Parse);}public static long[]ReadLongArray(){Tokens=null;return Array.ConvertAll(Console.ReadLine().Split(' '),long.Parse);}public static double[]ReadDoubleArray(){Tokens=null;return Array.ConvertAll(Console.ReadLine().Split(' '),double.Parse);}public static string[]ReadStringArray(){Tokens=null;return Console.ReadLine().Split(' ');}public static void ReadCol(out long[]a,long N){a=new long[N];for(int i=0;i<N;i++){a[i]=ReadLong();}}public static void ReadCols(out long[]a,out long[]b,long N){a=new long[N];b=new long[N];for(int i=0;i<N;i++){a[i]=ReadLong();b[i]=ReadLong();}}public static void ReadCols(out long[]a,out long[]b,out long[]c,long N){a=new long[N];b=new long[N];c=new long[N];for(int i=0;i<N;i++){a[i]=ReadLong();b[i]=ReadLong();c[i]=ReadLong();}}public static int[,]ReadIntTable(int h,int w){Tokens=null;int[,]ret=new int[h,w];for(int i=0;i<h;i++){for(int j=0;j<w;j++){ret[i,j]=ReadInt();}}return ret;}public static long[,]ReadLongTable(long h,long w){Tokens=null;long[,]ret=new long[h,w];for(int i=0;i<h;i++){for(int j=0;j<w;j++){ret[i,j]=ReadLong();}}return ret;}public static char[,]ReadCharTable(int h,int w){Tokens=null;char[,]res=new char[h,w];for(int i=0;i<h;i++){string s=ReadString();for(int j=0;j<w;j++){res[i,j]=s[j];}}return res;}private static string[]Tokens;private static int Pointer;private static string Next(){if(Tokens==null||Tokens.Length<=Pointer){Tokens=Console.ReadLine().Split(' ');Pointer=0;}return Tokens[Pointer++];}}public static class Util{public static readonly long INF=(long)1e17;public readonly static long MOD=(long)1e9+7;public readonly static int[]DXY4={0,1,0,-1,0};public readonly static int[]DXY8={1,1,0,1,-1,0,-1,-1,1};public static void DontAutoFlush(){if(Console.IsOutputRedirected)return;var sw=new System.IO.StreamWriter(Console.OpenStandardOutput()){AutoFlush=false};Console.SetOut(sw);}public static void Flush(){Console.Out.Flush();}public static T[]Sort<T>(T[]array){Array.Sort<T>(array);return array;}public static T[]SortDecend<T>(T[]array){Array.Sort<T>(array);Array.Reverse(array);return array;}public static void Swap<T>(ref T a,ref T b){T _a=a;a=b;b=_a;}public static long GCD(long a,long b){while(b!=0){long _a=a;a=b;b=_a%b;}return a;}public static long LCM(long a,long b){if(a==0||b==0)return 0;return a*b/GCD(a,b);}public static void ChMax(ref long a,long b){if(a<b)a=b;}public static void ChMin(ref long a,long b){if(a>b)a=b;}public static void ChMax(ref int a,int b){if(a<b)a=b;}public static void ChMin(ref int a,int b){if(a>b)a=b;}public static void FillArray<T>(T[]array,T value){int max=array.Length;for(int i=0;i<max;i++){array[i]=value;}}public static void FillArray<T>(T[,]array,T value){int max0=array.GetLength(0);int max1=array.GetLength(1);for(int i=0;i<max0;i++){for(int j=0;j<max1;j++){array[i,j]=value;}}}public static void FillArray<T>(T[,,]array,T value){int max0=array.GetLength(0);int max1=array.GetLength(1);int max2=array.GetLength(2);for(int i=0;i<max0;i++){for(int j=0;j<max1;j++){for(int k=0;k<max2;k++){array[i,j,k]=value;}}}}public static long[]Accumulate(long[]array){long[]acc=new long[array.Length+1];for(int i=0;i<array.Length;i++){acc[i+1]=acc[i]+array[i];}return acc;}public static double[]Accumulate(double[]array){double[]acc=new double[array.Length+1];for(int i=0;i<array.Length;i++){acc[i+1]=acc[i]+array[i];}return acc;}} }
a.cc:1:7: error: expected nested-name-specifier before 'System' 1 | using System; | ^~~~~~ a.cc:2:7: error: expected nested-name-specifier before 'System' 2 | using System.Collections.Generic; | ^~~~~~ a.cc:3:7: error: expected nested-name-specifier before 'System' 3 | using System.Linq; | ^~~~~~ a.cc:4:7: error: expected nested-name-specifier before 'static' 4 | using static System.Math; | ^~~~~~ a.cc:5:7: error: expected nested-name-specifier before 'static' 5 | using static _20200413.abc059_b.Cin; | ^~~~~~ a.cc:6:7: error: expected nested-name-specifier before 'static' 6 | using static _20200413.abc059_b.Util; | ^~~~~~ a.cc:7:14: error: '_20200413' does not name a type 7 | using Pair = _20200413.abc059_b.VTuple<long, long>; | ^~~~~~~~~ a.cc:14:20: error: expected '{' before '.' token 14 | namespace _20200413.abc059_b | ^ a.cc:14:20: error: expected unqualified-id before '.' token
s339260913
p03738
C++
A = int(input()) B = int(input()) if A > B: print('GREATER') elif A < B: print('LESS') else: print('EQUAL')
a.cc:5:11: warning: multi-character literal with 7 characters exceeds 'int' size of 4 bytes 5 | print('GREATER') | ^~~~~~~~~ a.cc:7:11: warning: multi-character character constant [-Wmultichar] 7 | print('LESS') | ^~~~~~ a.cc:9:11: warning: multi-character literal with 5 characters exceeds 'int' size of 4 bytes 9 | print('EQUAL') | ^~~~~~~ a.cc:1:1: error: 'A' does not name a type 1 | A = int(input()) | ^
s124195531
p03738
C++
#include <bits/stdc++.h> using namespace std; typedef long long int ll; int main(){ ill a,b; cin >> a >> b; if(a>b)cout <<"GREATER"; else if(a<b)cout <<"LESS"; else cout << "EQUAL"; cout << endl; }
a.cc: In function 'int main()': a.cc:6:5: error: 'ill' was not declared in this scope; did you mean 'll'? 6 | ill a,b; | ^~~ | ll a.cc:7:12: error: 'a' was not declared in this scope 7 | cin >> a >> b; | ^ a.cc:7:17: error: 'b' was not declared in this scope 7 | cin >> a >> b; | ^
s010821463
p03738
C++
#include<string> #include<iostream> using namespace std; string A,B; int i=0; int main(){ cin>>A>>B; if(A.length()>B.length()){ cout<<"GREATER"<<endl; }else if(A.length()<B.length()){ cout<<"LESS"<<endl; }else{ while(i<A.length()){ if(A[i]>B[i]){ cout<<"GREATER"<<endl; break; }else if(A[i]<B[i]){ cout<<"LESS"<<endl; break; } i++; } if(i==(A.length())cout<<"EQUAL"<<endl; } return 0; }
a.cc: In function 'int main()': a.cc:23:21: error: expected ';' before 'cout' 23 | if(i==(A.length())cout<<"EQUAL"<<endl; | ^~~~ | ; a.cc:24:3: error: expected primary-expression before '}' token 24 | } | ^ a.cc:23:41: error: expected ')' before '}' token 23 | if(i==(A.length())cout<<"EQUAL"<<endl; | ~ ^ | ) 24 | } | ~ a.cc:24:3: error: expected primary-expression before '}' token 24 | } | ^
s139503977
p03738
C++
#include<string> #include<iostream> using namespace std; string A,B,i=0; int main(){ cin>>A>>B; if(A.length()>B.length()){ cout<<"GREATER"<<endl; }else if(A[i]<B[i]){ cout<<"LESS"<<endl; }else{ while(i<A.length()){ if(A[i]>B[i]){ cout<<"GREATER"<<endl; break; }else if(A[i]<B[i]){ cout<<"LESS"<<endl; break; } if(i==(A.length()-1))cout<<"EQUAL"<<endl; } } return 0; }
a.cc: In function 'int main()': a.cc:9:13: error: no match for 'operator[]' (operand types are 'std::string' {aka 'std::__cxx11::basic_string<char>'} and 'std::string' {aka 'std::__cxx11::basic_string<char>'}) 9 | }else if(A[i]<B[i]){ | ^ In file included from /usr/include/c++/14/string:54, from a.cc:1: /usr/include/c++/14/bits/basic_string.h:1247:7: note: candidate: 'std::__cxx11::basic_string<_CharT, _Traits, _Alloc>::const_reference std::__cxx11::basic_string<_CharT, _Traits, _Alloc>::operator[](size_type) const [with _CharT = char; _Traits = std::char_traits<char>; _Alloc = std::allocator<char>; const_reference = const char&; size_type = long unsigned int]' 1247 | operator[] (size_type __pos) const _GLIBCXX_NOEXCEPT | ^~~~~~~~ /usr/include/c++/14/bits/basic_string.h:1247:29: note: no known conversion for argument 1 from 'std::string' {aka 'std::__cxx11::basic_string<char>'} to 'std::__cxx11::basic_string<char>::size_type' {aka 'long unsigned int'} 1247 | operator[] (size_type __pos) const _GLIBCXX_NOEXCEPT | ~~~~~~~~~~^~~~~ /usr/include/c++/14/bits/basic_string.h:1265:7: note: candidate: 'std::__cxx11::basic_string<_CharT, _Traits, _Alloc>::reference std::__cxx11::basic_string<_CharT, _Traits, _Alloc>::operator[](size_type) [with _CharT = char; _Traits = std::char_traits<char>; _Alloc = std::allocator<char>; reference = char&; size_type = long unsigned int]' 1265 | operator[](size_type __pos) | ^~~~~~~~ /usr/include/c++/14/bits/basic_string.h:1265:28: note: no known conversion for argument 1 from 'std::string' {aka 'std::__cxx11::basic_string<char>'} to 'std::__cxx11::basic_string<char>::size_type' {aka 'long unsigned int'} 1265 | operator[](size_type __pos) | ~~~~~~~~~~^~~~~ a.cc:9:18: error: no match for 'operator[]' (operand types are 'std::string' {aka 'std::__cxx11::basic_string<char>'} and 'std::string' {aka 'std::__cxx11::basic_string<char>'}) 9 | }else if(A[i]<B[i]){ | ^ /usr/include/c++/14/bits/basic_string.h:1247:7: note: candidate: 'std::__cxx11::basic_string<_CharT, _Traits, _Alloc>::const_reference std::__cxx11::basic_string<_CharT, _Traits, _Alloc>::operator[](size_type) const [with _CharT = char; _Traits = std::char_traits<char>; _Alloc = std::allocator<char>; const_reference = const char&; size_type = long unsigned int]' 1247 | operator[] (size_type __pos) const _GLIBCXX_NOEXCEPT | ^~~~~~~~ /usr/include/c++/14/bits/basic_string.h:1247:29: note: no known conversion for argument 1 from 'std::string' {aka 'std::__cxx11::basic_string<char>'} to 'std::__cxx11::basic_string<char>::size_type' {aka 'long unsigned int'} 1247 | operator[] (size_type __pos) const _GLIBCXX_NOEXCEPT | ~~~~~~~~~~^~~~~ /usr/include/c++/14/bits/basic_string.h:1265:7: note: candidate: 'std::__cxx11::basic_string<_CharT, _Traits, _Alloc>::reference std::__cxx11::basic_string<_CharT, _Traits, _Alloc>::operator[](size_type) [with _CharT = char; _Traits = std::char_traits<char>; _Alloc = std::allocator<char>; reference = char&; size_type = long unsigned int]' 1265 | operator[](size_type __pos) | ^~~~~~~~ /usr/include/c++/14/bits/basic_string.h:1265:28: note: no known conversion for argument 1 from 'std::string' {aka 'std::__cxx11::basic_string<char>'} to 'std::__cxx11::basic_string<char>::size_type' {aka 'long unsigned int'} 1265 | operator[](size_type __pos) | ~~~~~~~~~~^~~~~ a.cc:12:12: error: no match for 'operator<' (operand types are 'std::string' {aka 'std::__cxx11::basic_string<char>'} and 'std::__cxx11::basic_string<char>::size_type' {aka 'long unsigned int'}) 12 | while(i<A.length()){ | ~^~~~~~~~~~~ | | | | | std::__cxx11::basic_string<char>::size_type {aka long unsigned int} | std::string {aka std::__cxx11::basic_string<char>} In file included from /usr/include/c++/14/string:48: /usr/include/c++/14/bits/stl_iterator.h:448:5: note: candidate: 'template<class _Iterator> constexpr bool std::operator<(const reverse_iterator<_Iterator>&, const reverse_iterator<_Iterator>&)' 448 | operator<(const reverse_iterator<_Iterator>& __x, | ^~~~~~~~ /usr/include/c++/14/bits/stl_iterator.h:448:5: note: template argument deduction/substitution failed: a.cc:12:22: note: 'std::string' {aka 'std::__cxx11::basic_string<char>'} is not derived from 'const std::reverse_iterator<_Iterator>' 12 | while(i<A.length()){ | ^ /usr/include/c++/14/bits/stl_iterator.h:493:5: note: candidate: 'template<class _IteratorL, class _IteratorR> constexpr bool std::operator<(const reverse_iterator<_Iterator>&, const reverse_iterator<_IteratorR>&)' 493 | operator<(const reverse_iterator<_IteratorL>& __x, | ^~~~~~~~ /usr/include/c++/14/bits/stl_iterator.h:493:5: note: template argument deduction/substitution failed: a.cc:12:22: note: 'std::string' {aka 'std::__cxx11::basic_string<char>'} is not derived from 'const std::reverse_iterator<_Iterator>' 12 | while(i<A.length()){ | ^ /usr/include/c++/14/bits/stl_iterator.h:1694:5: note: candidate: 'template<class _IteratorL, class _IteratorR> constexpr bool std::operator<(const move_iterator<_IteratorL>&, const move_iterator<_IteratorR>&)' 1694 | operator<(const move_iterator<_IteratorL>& __x, | ^~~~~~~~ /usr/include/c++/14/bits/stl_iterator.h:1694:5: note: template argument deduction/substitution failed: a.cc:12:22: note: 'std::string' {aka 'std::__cxx11::basic_string<char>'} is not derived from 'const std::move_iterator<_IteratorL>' 12 | while(i<A.length()){ | ^ /usr/include/c++/14/bits/stl_iterator.h:1760:5: note: candidate: 'template<class _Iterator> constexpr bool std::operator<(const move_iterator<_IteratorL>&, const move_iterator<_IteratorL>&)' 1760 | operator<(const move_iterator<_Iterator>& __x, | ^~~~~~~~ /usr/include/c++/14/bits/stl_iterator.h:1760:5: note: template argument deduction/substitution failed: a.cc:12:22: note: 'std::string' {aka 'std::__cxx11::basic_string<char>'} is not derived from 'const std::move_iterator<_IteratorL>' 12 | while(i<A.length()){ | ^ In file included from /usr/include/c++/14/bits/stl_algobase.h:64, from /usr/include/c++/14/string:51: /usr/include/c++/14/bits/stl_pair.h:1045:5: note: candidate: 'template<class _T1, class _T2> constexpr bool std::operator<(const pair<_T1, _T2>&, const pair<_T1, _T2>&)' 1045 | operator<(const pair<_T1, _T2>& __x, const pair<_T1, _T2>& __y) | ^~~~~~~~ /usr/include/c++/14/bits/stl_pair.h:1045:5: note: template argument deduction/substitution failed: a.cc:12:22: note: 'std::string' {aka 'std::__cxx11::basic_string<char>'} is not derived from 'const std::pair<_T1, _T2>' 12 | while(i<A.length()){ | ^ In file included from /usr/include/c++/14/bits/basic_string.h:47: /usr/include/c++/14/string_view:673:5: note: candidate: 'template<class _CharT, class _Traits> constexpr bool std::operator<(basic_string_view<_CharT, _Traits>, basic_string_view<_CharT, _Traits>)' 673 | operator< (basic_string_view<_CharT, _Traits> __x, | ^~~~~~~~ /usr/include/c++/14/string_view:673:5: note: template argument deduction/substitution failed: a.cc:12:22: note: 'std::__cxx11::basic_string<char>' is not derived from 'std::basic_string_view<_CharT, _Traits>' 12 | while(i<A.length()){ | ^ /usr/include/c++/14/string_view:680:5: note: candidate: 'template<class _CharT, class _Traits> constexpr bool std::operator<(basic_string_view<_CharT, _Traits>, __type_identity_t<basic_string_view<_CharT, _Traits> >)' 680 | operator< (basic_string_view<_CharT, _Traits> __x, | ^~~~~~~~ /usr/include/c++/14/string_view:680:5: note: template argument deduction/substitution failed: a.cc:12:22: note: 'std::__cxx11::basic_string<char>' is not derived from 'std::basic_string_view<_CharT, _Traits>' 12 | while(i<A.length()){ | ^ /usr/include/c++/14/string_view:688:5: note: candidate: 'template<class _CharT, class _Traits> constexpr bool std::operator<(__type_identity_t<basic_string_view<_CharT, _Traits> >, basic_string_view<_CharT, _Traits>)' 688 | operator< (__type_identity_t<basic_string_view<_CharT, _Traits>> __x, | ^~~~~~~~ /usr/include/c++/14/string_view:688:5: note: template argument deduction/substitution failed: a.cc:12:22: note: mismatched types 'std::basic_string_view<_CharT, _Traits>' and 'long unsigned int' 12 | while(i<A.length()){ | ^ /usr/include/c++/14/bits/basic_string.h:3874:5: note: candidate: 'template<class _CharT, class _Traits, class _Alloc> bool std::operator<(const __cxx11::basic_string<_CharT, _Traits, _Allocator>&, const __cxx11::basic_string<_CharT, _Traits, _Allocator>&)' 3874 | operator<(const basic_string<_CharT, _Traits, _Alloc>& __lhs, | ^~~~~~~~ /usr/include/c++/14/bits/basic_string.h:3874:5: note: template argument deduction/substitution failed: a.cc:12:22: note: mismatched types 'const std::__cxx11::basic_string<_CharT, _Traits, _Allocator>' and 'std::__cxx11::basic_string<char>::size_type' {aka 'long unsigned int'} 12 | while(i<A.length()){ | ^ /usr/include/c++/14/bits/basic_string.h:3888:5: note: candidate: 'template<class _CharT, class _Traits, class _Alloc> bool std::operator<(const __cxx11::basic_string<_CharT, _Traits, _Allocator>&, const _CharT*)' 3888 | operator<(const basic_string<_CharT, _Traits, _Alloc>& __lhs, | ^~~~~~~~ /usr/include/c++/14/bits/basic_string.h:3888:5: note: template argument deduction/substitution failed: a.cc:12:22: note: mismatched types 'const _CharT*' and 'long unsigned int' 12 | while(i<A.length()){ | ^ /usr/include/c++/14/bits/basic_string.h:3901:5: note: candidate: 'templat
s253514344
p03738
C++
#include<string> #include<iostream> using namespace std; string A,B,ant; int main(){ cin>>A>>B; if(A.length()>B.length()){ cout<<"GREATER"<<endl; }else if(A[i]<B[i]){ cout<<"LESS"<<endl; }else{ while(i<A.length()){ if(A[i]>B[i]){ cout<<"GREATER"<<endl; break; }else if(A[i]<B[i]){ cout<<"LESS"<<endl; break; } if(i==(A.length()-1))cout<<"EQUAL"<<endl; } } return 0; }
a.cc: In function 'int main()': a.cc:9:14: error: 'i' was not declared in this scope 9 | }else if(A[i]<B[i]){ | ^
s284987889
p03738
C++
#include <bits/stdc++.h> using namespace std; int main(){ long long a,b; cin >> a >> b; double a = a/1000000; double b = b/1000000; if(a > b){ cout << "GREATER" <<endl; } else if(a==b){ cout << "EQUAL" <<endl; } else{ cout << "LESS" <<endl; } }
a.cc: In function 'int main()': a.cc:8:10: error: conflicting declaration 'double a' 8 | double a = a/1000000; | ^ a.cc:5:12: note: previous declaration as 'long long int a' 5 | long long a,b; | ^ a.cc:9:10: error: conflicting declaration 'double b' 9 | double b = b/1000000; | ^ a.cc:5:14: note: previous declaration as 'long long int b' 5 | long long a,b; | ^
s076668424
p03738
C++
#include <bits/stdc++.h> using namespace std; int main(){ long long a,b; cin >> a >> b; if(a > b){ cout << "GREATER " <<endl; } else if(a==b){ cout << "EQUAL" <<endl; } else{ cout << "LESS" <<endl; } }
a.cc:9:17: warning: missing terminating " character 9 | cout << "GREATER | ^ a.cc:9:17: error: missing terminating " character 9 | cout << "GREATER | ^~~~~~~~ a.cc:10:1: warning: missing terminating " character 10 | " <<endl; | ^ a.cc:10:1: error: missing terminating " character 10 | " <<endl; | ^~~~~~~~~ a.cc: In function 'int main()': a.cc:11:1: error: expected primary-expression before '}' token 11 | } | ^