CF1369A.FashionabLee
普及/提高-
通过率:0%
AC君温馨提醒
该题目为【codeforces】题库的题目,您提交的代码将被提交至codeforces进行远程评测,并由ACGO抓取测评结果后进行展示。由于远程测评的测评机由其他平台提供,我们无法保证该服务的稳定性,若提交后无反应,请等待一段时间后再进行重试。
题目描述
Lee is going to fashionably decorate his house for a party, using some regular convex polygons...
Lee thinks a regular n -sided (convex) polygon is beautiful if and only if he can rotate it in such a way that at least one of its edges is parallel to the OX -axis and at least one of its edges is parallel to the OY -axis at the same time.
Recall that a regular n -sided polygon is a convex polygon with n vertices such that all the edges and angles are equal.
Now he is shopping: the market has t regular polygons. For each of them print YES if it is beautiful and NO otherwise.
输入格式
The first line contains a single integer t ( 1≤t≤104 ) — the number of polygons in the market.
Each of the next t lines contains a single integer ni ( 3≤ni≤109 ): it means that the i -th polygon is a regular ni -sided polygon.
输出格式
For each polygon, print YES if it's beautiful or NO otherwise (case insensitive).
输入输出样例
输入#1
4 3 4 12 1000000000
输出#1
NO YES YES YES
说明/提示
In the example, there are 4 polygons in the market. It's easy to see that an equilateral triangle (a regular 3 -sided polygon) is not beautiful, a square (a regular 4 -sided polygon) is beautiful and a regular 12 -sided polygon (is shown below) is beautiful as well.