Submission #1532643


Source Code Expand

#include <bits/stdc++.h>
using namespace std;
typedef pair<int,int> ii;
typedef vector<int>   vi;
typedef vector<long long> vll;
typedef vector<pair<int,int> > vii;
#define ll long long
#define pb push_back
#define mp  make_pair
#define ff first
#define ss second
#define pq priority_queue
#define sf(x) scanf("%d",&x)
int inf = (1e9) + 7;



int main(){
	int n;
	cin >> n;
	int cnt = 0;
	int even = 0;
	int odd = 0;
	int aux;
	for (int i = 0; i < n; ++i)
	{
		sf(aux);
		if(!(aux%4))
			cnt++;
		else if(aux%2)odd++;
		else even++;
	}
	int f = 0;
	if(even == 0 and cnt >= odd-1)
		f = 1;
	else if(cnt >= odd)
		f = 1;

	if(f)
		printf("Yes\n");
	else
		printf("No\n");
}

Submission Info

Submission Time
Task C - 4-adjacent
User gtaumaturgo
Language C++14 (GCC 5.4.1)
Score 400
Code Size 715 Byte
Status AC
Exec Time 13 ms
Memory 256 KB

Compile Error

./Main.cpp: In function ‘int main()’:
./Main.cpp:27:10: warning: ignoring return value of ‘int scanf(const char*, ...)’, declared with attribute warn_unused_result [-Wunused-result]
   sf(aux);
          ^

Judge Result

Set Name Sample All
Score / Max Score 0 / 0 400 / 400
Status
AC × 5
AC × 19
Set Name Test Cases
Sample 0_00.txt, 0_01.txt, 0_02.txt, 0_03.txt, 0_04.txt
All 0_00.txt, 0_01.txt, 0_02.txt, 0_03.txt, 0_04.txt, 1_00.txt, 1_01.txt, 1_02.txt, 1_03.txt, 1_04.txt, 1_05.txt, 1_06.txt, 1_07.txt, 1_08.txt, 1_09.txt, 1_10.txt, 1_11.txt, 1_12.txt, 1_13.txt
Case Name Status Exec Time Memory
0_00.txt AC 1 ms 256 KB
0_01.txt AC 1 ms 256 KB
0_02.txt AC 1 ms 256 KB
0_03.txt AC 1 ms 256 KB
0_04.txt AC 1 ms 256 KB
1_00.txt AC 1 ms 256 KB
1_01.txt AC 1 ms 256 KB
1_02.txt AC 1 ms 256 KB
1_03.txt AC 1 ms 256 KB
1_04.txt AC 1 ms 256 KB
1_05.txt AC 1 ms 256 KB
1_06.txt AC 1 ms 256 KB
1_07.txt AC 12 ms 256 KB
1_08.txt AC 13 ms 256 KB
1_09.txt AC 12 ms 256 KB
1_10.txt AC 13 ms 256 KB
1_11.txt AC 12 ms 256 KB
1_12.txt AC 13 ms 256 KB
1_13.txt AC 13 ms 256 KB