Submission #645298

#TimeUsernameProblemLanguageResultExecution timeMemory
645298notmeSplit (info1cup19_split)C++14
100 / 100
1 ms324 KiB
#include<bits/stdc++.h>
#define endl '\n'
using namespace std;

void speed()
{
    ios_base::sync_with_stdio(false);
    cin.tie(NULL);
    cout.tie(NULL);
}
string s;
int main()
{
    speed();
    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];
    cout << endl;
    return 0;
}

Compilation message (stderr)

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