Codeforces Round #652 (Div. 2) A. FashionabLee(几何)

Posted kanoon

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Codeforces Round #652 (Div. 2) A. FashionabLee(几何)相关的知识,希望对你有一定的参考价值。

题目链接:https://codeforces.com/contest/1369/problem/A

题意

判断正 $n$ 边形能否通过旋转使得一边与 $x$ 轴平行,一边与 $y$ 轴平行。

题解

符合条件的正 $n$ 边形一定可以像正方形一样被两个对称轴 $4$ 等分,即总的边数为 $4$ 的倍数。 

代码

#include <bits/stdc++.h>
using namespace std;

void solve() {
    int n; cin >> n;
    cout << (n % 4 == 0 ? "YES" : "NO") << "
";
}

int main() {
    int t; cin >> t;
    while (t--) solve();
}

 

以上是关于Codeforces Round #652 (Div. 2) A. FashionabLee(几何)的主要内容,如果未能解决你的问题,请参考以下文章

Codeforces Round #652 (Div. 2) D. TediousLee

Codeforces Round #652 (Div. 2) C—RationalLee 构造+贪心

Codeforces Round #652 (Div. 2) E. DeadLee(贪心)

Codeforces Round #652 (Div. 2) C. RationalLee(贪心)

Codeforces Round #652 (Div. 2) B. AccurateLee(字符串)

Codeforces Round #652 (Div. 2) E. DeadLee 贪心