Main.cpp: In function 'bool check()':
Main.cpp:26:22: warning: comparison of integer expressions of different signedness: 'long long int' and 'long long unsigned int' [-Wsign-compare]
26 | for(int i = 0; i < v.size() / k; i++) vv.push_back(v[i]);
| ~~^~~~~~~~~~~~~~
Main.cpp:28:33: warning: comparison of integer expressions of different signedness: 'long long int' and 'std::vector<long long int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
28 | for(int i = v.size() / k; i < v.size(); i += v.size() / k) {
| ~~^~~~~~~~~~
Main.cpp:29:26: warning: comparison of integer expressions of different signedness: 'long long int' and 'long long unsigned int' [-Wsign-compare]
29 | for(int j = i; j < i + v.size() / k; j++) vvv.push_back(v[j]);
| ~~^~~~~~~~~~~~~~~~~~
Main.cpp: At global scope:
Main.cpp:36:1: warning: ISO C++ forbids declaration of 'main' with no type [-Wreturn-type]
36 | main() {
| ^~~~
Main.cpp: In function 'int main()':
Main.cpp:52:22: warning: comparison of integer expressions of different signedness: 'long long int' and 'long long unsigned int' [-Wsign-compare]
52 | for(int i = 0; i < ans.size() / k; i++) cout << ans[i] << ' ';
| ~~^~~~~~~~~~~~~~~~