Submission #67686

# Submission time Handle Problem Language Result Execution time Memory
67686 2018-08-15T08:39:35 Z tatatan XOR Sum (info1cup17_xorsum) C++11
0 / 100
1600 ms 8148 KB
#include <bits/stdc++.h>
#define mp make_pair
#define pb push_back
#define pii pair<int,int>
#define LL long long
#define st first
#define nd second
#define endl '\n'
using namespace std;
 
const int MAXN=1000005;
LL n,a[MAXN],b[MAXN];
LL ans;
 
int main() {
 
	scanf("%lld",&n);
	for(int i=0;i<n;++i)
		scanf("%lld",&a[i]);
	LL ans2=0;
	for(int i=0;i<n;++i)
		for(int j=0;j<n;++j)
			ans2^=a[i]+a[j];
	printf("%lld/n",ans2);
 
}

Compilation message

xorsum.cpp: In function 'int main()':
xorsum.cpp:17:7: warning: ignoring return value of 'int scanf(const char*, ...)', declared with attribute warn_unused_result [-Wunused-result]
  scanf("%lld",&n);
  ~~~~~^~~~~~~~~~~
xorsum.cpp:19:8: warning: ignoring return value of 'int scanf(const char*, ...)', declared with attribute warn_unused_result [-Wunused-result]
   scanf("%lld",&a[i]);
   ~~~~~^~~~~~~~~~~~~~
# Verdict Execution time Memory Grader output
1 Incorrect 15 ms 376 KB Output isn't correct
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Execution timed out 1680 ms 8148 KB Time limit exceeded
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Execution timed out 1680 ms 8148 KB Time limit exceeded
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Incorrect 15 ms 376 KB Output isn't correct
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Incorrect 15 ms 376 KB Output isn't correct
2 Halted 0 ms 0 KB -