Submission #1592704


Source Code Expand

#include <cstdio>
using namespace std;
int n,cnt,tmp;
int main()
{
	cnt=0;
	scanf("%d",n);
	for(int i=0;i<n;i++)
	{
		scanf("%d",&tmp);
		if(tmp&1) cnt++;
	}
	if(cnt&1) printf("YES\n");
	else printf("NO\n");
	return 0;
} 

Submission Info

Submission Time
Task A - Addition
User vjudge1
Language C++14 (GCC 5.4.1)
Score 0
Code Size 221 Byte
Status RE
Exec Time 98 ms
Memory 128 KB

Compile Error

./Main.cpp: In function ‘int main()’:
./Main.cpp:7:14: warning: format ‘%d’ expects argument of type ‘int*’, but argument 2 has type ‘int’ [-Wformat=]
  scanf("%d",n);
              ^
./Main.cpp:7:15: warning: ignoring return value of ‘int scanf(const char*, ...)’, declared with attribute warn_unused_result [-Wunused-result]
  scanf("%d",n);
               ^
./Main.cpp:10:19: warning: ignoring return value of ‘int scanf(const char*, ...)’, declared with attribute warn_unused_result [-Wunused-result]
   scanf("%d",&tmp);
                   ^

Judge Result

Set Name Sample All
Score / Max Score 0 / 0 0 / 300
Status
RE × 2
RE × 16
Set Name Test Cases
Sample sample1.txt, sample2.txt
All sample1.txt, sample2.txt, in1.txt, in10.txt, in11.txt, in12.txt, in2.txt, in3.txt, in4.txt, in5.txt, in6.txt, in7.txt, in8.txt, in9.txt, sample1.txt, sample2.txt
Case Name Status Exec Time Memory
in1.txt RE 97 ms 128 KB
in10.txt RE 98 ms 128 KB
in11.txt RE 96 ms 128 KB
in12.txt RE 96 ms 128 KB
in2.txt RE 95 ms 128 KB
in3.txt RE 95 ms 128 KB
in4.txt RE 96 ms 128 KB
in5.txt RE 96 ms 128 KB
in6.txt RE 95 ms 128 KB
in7.txt RE 96 ms 128 KB
in8.txt RE 95 ms 128 KB
in9.txt RE 96 ms 128 KB
sample1.txt RE 95 ms 128 KB
sample2.txt RE 96 ms 128 KB