首页 > 其他分享 >Codeforces Global Round 14, B. Phoenix and Puzzle

Codeforces Global Round 14, B. Phoenix and Puzzle

时间:2023-02-08 16:07:23浏览次数:41  
标签:square 14 Phoenix int Puzzle pieces xx puzzle


problem

B. Phoenix and Puzzle
time limit per test2 seconds
memory limit per test256 megabytes
inputstandard input
outputstandard output
Phoenix is playing with a new puzzle, which consists of n identical puzzle pieces. Each puzzle piece is a right isosceles triangle as shown below.

A puzzle piece
The goal of the puzzle is to create a square using the n pieces. He is allowed to rotate and move the pieces around, but none of them can overlap and all n pieces must be used (of course, the square shouldn’t contain any holes as well). Can he do it?

Input
The input consists of multiple test cases. The first line contains an integer t (1≤t≤104) — the number of test cases.

The first line of each test case contains an integer n (1≤n≤109) — the number of puzzle pieces.

Output
For each test case, if Phoenix can create a square with the n puzzle pieces, print YES. Otherwise, print NO.

Example
inputCopy
3
2
4
6
outputCopy
YES
YES
NO
Note
For n=2, Phoenix can create a square like this:

For n=4, Phoenix can create a square like this:

For n=6, it is impossible for Phoenix to create a square.

solution

#include<bits/stdc++.h>
using namespace std;
int a[110];
int main(){
int T; cin>>T;
while(T--){
int n; cin>>n;
int ok = 0;
if(n%4==0){
int x = n/4;
int xx = sqrt(x);
if(xx*xx==x){
ok = 1;
}
}
if(n%2==0){
int x = n/2;
int xx = sqrt(x);
if(xx*xx==x){
ok = 1;
}
}
if(ok==1)cout<<"YES\n";
else cout<<"NO\n";
}
return 0;
}


标签:square,14,Phoenix,int,Puzzle,pieces,xx,puzzle
From: https://blog.51cto.com/gwj1314/6044561

相关文章

  • Codeforces Global Round 14, C. Phoenix and Towers
    problemC.PhoenixandTowerstimelimitpertest2secondsmemorylimitpertest256megabytesinputstandardinputoutputstandardoutputPhoenixhasnblocksofh......
  • Codeforces Global Round 14, D. Phoenix and Socks
    problemD.PhoenixandSockstimelimitpertest2secondsmemorylimitpertest256megabytesinputstandardinputoutputstandardoutputTosatisfyhisloveofmat......
  • 【CCCC】L3-014 周游世界 (30分),,DFS搜索最短路,路径打印
    problemL3-014周游世界(30分)周游世界是件浪漫事,但规划旅行路线就不一定了……全世界有成千上万条航线、铁路线、大巴线,令人眼花缭乱。所以旅行社会选择部分运输公司组......
  • pycharm爬虫报错:pymysql.err.DataError: (1406, "Data too long for column 'content'
     在学习爬虫的时候,获取数据存入mysql时出现了问题:pymysql.err.DataError:(1406,"Datatoolongforcolumn'content'atrow1")因为mysql也是本地搭建的,所以一时间......
  • U214268 不老不死的竹林引路人
    不老不死的竹林引路人特别感谢icyM3tra神提供的标程OrzOrzOrz。速度上总时间直接从25s(我原来的程序)飙到了5s,单个测试点最慢也只有800ms!虽然有这么快的代码,但我还......
  • 第14课、POM - Page Object
      fromseleniumimportwebdriverfromselenium.webdriver.support.uiimportWebDriverWaitfromselenium.webdriver.support.uiimportSelectfromselenium.w......
  • CF14D题解
    CF14DTwoPaths题解题目链接传送门题意简述给定一棵树,找出两条不经过相同点的最长路径,使得他们的长度乘积最大。题目分析首先,如果在一棵树上,两条路径没有共同的点,那......
  • C++ Day14 借助智能指针实现文本查询查询
    一、设计思路数据结构:1、读取文件时,要记住文件的每一行,并且要将每一行分解为独立的单词vector<string>vec;istringstream2、输出时提供每个单词与其关联的行号,且......
  • Educational Codeforces Round 142 E. Divisors and Table
    链接:https://codeforces.com/problemset/problem/1792/E题意:给定n*n乘法表,第a[i][j]=i*j,给定m=m1*m2,求m的所有因子中出现在表中的最小行的xor和。n<=1e9,m......
  • 训练日记 2018.12.14
        哎,这几天被树形背包搞懵了,一开始感觉没学到啥,做一个题看一个题解,每个题单个来看都能看懂,但是遇到一个新题就不会了,而且你用上一个题的做法做,依旧不对,网上的题解......