답안 #649454

# 제출 시각 아이디 문제 언어 결과 실행 시간 메모리
649454 2022-10-10T08:42:36 Z birisi XOR Sum (info1cup17_xorsum) C++14
11 / 100
223 ms 1400 KB
#include <bits/stdc++.h>
using namespace std;

long long int say[5000];

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]++;
	}

	long long 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 || say[x]%4 == 3)
			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++) {
      |                   ~~^~~~~~~~~~
# 결과 실행 시간 메모리 Grader output
1 Runtime error 1 ms 340 KB Execution killed with signal 11
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Correct 223 ms 340 KB Output is correct
2 Correct 218 ms 1400 KB Output is correct
# 결과 실행 시간 메모리 Grader output
1 Correct 223 ms 340 KB Output is correct
2 Correct 218 ms 1400 KB Output is correct
3 Runtime error 1 ms 340 KB Execution killed with signal 11
4 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Runtime error 1 ms 340 KB Execution killed with signal 11
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Runtime error 1 ms 340 KB Execution killed with signal 11
2 Halted 0 ms 0 KB -