Submission #67685

# Submission time Handle Problem Language Result Execution time Memory
67685 2018-08-15T08:38:39 Z tatatan XOR Sum (info1cup17_xorsum) C++11
0 / 100
1600 ms 8244 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]);
	int 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:24:22: warning: format '%lld' expects argument of type 'long long int', but argument 2 has type 'int' [-Wformat=]
  printf("%lld/n",ans2);
                      ^
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 1672 ms 8244 KB Time limit exceeded
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Execution timed out 1672 ms 8244 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 -