Submission #839894

#TimeUsernameProblemLanguageResultExecution timeMemory
839894theagentbaraSplit (info1cup19_split)C++17
100 / 100
1 ms300 KiB
#include <bits/stdc++.h> using namespace std; #define ll long long #define dl double #define pb push_back #define MOD 1000000007 int main (){ string s; cin>>s; for(int i = 0; i < s.size() / 2; i++){ cout<<s[i]; } cout<<" "; for(int i = s.size() / 2; i < s.size(); i++){ cout<<s[i]; } return 0; }

Compilation message (stderr)

split.cpp: In function 'int main()':
split.cpp:12:22: warning: comparison of integer expressions of different signedness: 'int' and 'std::__cxx11::basic_string<char>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
   12 |     for(int i = 0; i < s.size() / 2; i++){
      |                    ~~^~~~~~~~~~~~~~
split.cpp:16:33: warning: comparison of integer expressions of different signedness: 'int' and 'std::__cxx11::basic_string<char>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
   16 |     for(int i = s.size() / 2; i < s.size(); i++){
      |                               ~~^~~~~~~~~~
#Verdict Execution timeMemoryGrader output
Fetching results...