Submission #2705864


Source Code Expand

#include <iostream>
#include <algorithm>
#include <cmath>
#include <map>
#include <vector>
#include <queue>
#include <functional>
#include <string>
#include <stack>
#include <set>
using namespace std;
using ll = long long;
typedef unsigned long long ull;
typedef pair<ll, ll> P;
typedef pair<ll, pair<ll, ll>> PP;

const ll MOD = 1e9 + 7;
const ll MOD2 = 998244353;
const ll INF = 1 << 30;
const ll INF2 = 9e18;
const double INF3 = 9e14;
const int dx[4] = { 1,0,-1,0 }, dy[4] = { 0,1,0,-1 };
const int tx[8] = { -1,0,1,-1,1,-1,0,1 }, ty[8] = { -1,-1,-1,0,0,1,1,1 };
#define ALL(x) (x).begin(),(x).end()
#define pb push_back
#define fr first
#define sc second



int main() {
	int n, a[100010], cnt[3] = { 0 };
	cin >> n;
	for (int i = 0; i < n; i++) {
		cin >> a[i];
		int c = 0;
		while (true) {
			if (a[i] % 2 == 1)break;
			c++;
			a[i] /= 2;
		}
		if (c == 0)cnt[0]++;
		else if (c == 1)cnt[1]++;
		else cnt[2]++;
	}
	for (int i = 0; i < cnt[0]; i++) {
		cnt[2]--;
	}
	if (!cnt[2]) {
		cout << "No" << endl;
	}
	cout << "Yes" << endl;
	return 0;
}

Submission Info

Submission Time
Task C - 4-adjacent
User kakakakaneko
Language C++14 (GCC 5.4.1)
Score 0
Code Size 1107 Byte
Status WA
Exec Time 55 ms
Memory 640 KB

Judge Result

Set Name Sample All
Score / Max Score 0 / 0 0 / 400
Status
AC × 1
WA × 4
AC × 4
WA × 15
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 WA 1 ms 256 KB
0_01.txt WA 1 ms 256 KB
0_02.txt AC 1 ms 256 KB
0_03.txt WA 1 ms 256 KB
0_04.txt WA 1 ms 256 KB
1_00.txt WA 1 ms 256 KB
1_01.txt WA 1 ms 256 KB
1_02.txt WA 1 ms 256 KB
1_03.txt AC 1 ms 256 KB
1_04.txt WA 1 ms 256 KB
1_05.txt WA 1 ms 256 KB
1_06.txt WA 1 ms 256 KB
1_07.txt WA 55 ms 640 KB
1_08.txt WA 53 ms 640 KB
1_09.txt AC 55 ms 640 KB
1_10.txt AC 55 ms 640 KB
1_11.txt WA 54 ms 640 KB
1_12.txt WA 55 ms 640 KB
1_13.txt WA 54 ms 640 KB