Submission #649370

# Submission time Handle Problem Language Result Execution time Memory
649370 2022-10-10T06:29:50 Z birisi XOR Sum (info1cup17_xorsum) C++14
0 / 100
222 ms 372 KB
#include <bits/stdc++.h>
using namespace std;

int say[60000000];

int main() {

	int n;
	cin >> n;

	vector <int> v;

	int x;
	for (int i = 0; i < n; i++) {
		cin >> x;
		if (say[x] == 0)
			v.push_back(x);
		say[x]++;
	}

	int an = 0;
	vector <int> d;
	for (int i = 0; i < v.size(); i++) {
		x = v[i];
		if (say[x]%2 == 1){
			d.push_back(x);
		}
		if (say[x]%4 == 2)
			an = an^(2*x);
	}

	for (int i = 0; i < d.size(); i++) {
		for (int j = i; j < d.size(); j++) {
			an = an ^ (d[i] + d[j]);
		}
	}

	cout << an;

}

Compilation message

xorsum.cpp: In function 'int main()':
xorsum.cpp:23:20: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
   23 |  for (int i = 0; i < v.size(); i++) {
      |                  ~~^~~~~~~~~~
xorsum.cpp:32:20: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
   32 |  for (int i = 0; i < d.size(); i++) {
      |                  ~~^~~~~~~~~~
xorsum.cpp:33:21: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
   33 |   for (int j = i; j < d.size(); j++) {
      |                   ~~^~~~~~~~~~
# Verdict Execution time Memory Grader output
1 Runtime error 5 ms 372 KB Execution killed with signal 11
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Incorrect 222 ms 340 KB Output isn't correct
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Incorrect 222 ms 340 KB Output isn't correct
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Runtime error 5 ms 372 KB Execution killed with signal 11
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Runtime error 5 ms 372 KB Execution killed with signal 11
2 Halted 0 ms 0 KB -