A[i]*A[i+1]的4的整数倍;为啥我的0.00%通过率
using System;
using System.Collections.Generic;
using System.Text;
namespace ConsoleApplication3
{
class Program
{
static void Main(string[] args)
{
int i, j;
int n = int.Parse(Console.ReadLine());
List<string> result =new List<string>();
for (i = 0; i < n; i++)
{
int k = int.Parse(Console.ReadLine());
string[] str = Console.ReadLine().Split();
List<int> li = new List<int>();
for (j = 0; j < k; j++)
{
li.Add(int.Parse(str[j]));
}
int temp = li[0];
for (j = 1; j < li.Count; j++)
{
if (temp * li[j] % 4 == 0)
{
temp = li[j];
li.RemoveAt(j);
j = 0;
}
}
if (li.Count == 1)
{
result.Add("Yes");
} else
{
result.Add("No");
}
}
for (i = 0; i < result.Count; i++)
{
Console.WriteLine(result[i]);
}
Console.ReadKey();
}
}
}
#网易#