Dcoder icon

Power Number @ Dcoder

By Lochard | As a newbie programmer | 13 Aug 2023


Problem: A Power Number is a positive number that can be expressed as x^x, i.e. x raise to the power of x, where x is any positive number. You will be given an integer array A and you need to print if the elements of array A are Power Numbers or not.

Input: First line contains N, a positive integer.

Next line contain N space-separated integers.

Output: For every integer, print 'Yes' if its a power number, else print 'No'. These outputs must be separated by space.

Constraints: 1 ≤ N ≤ 100

1 ≤ A[i] ≤ 10^16

Sample Input: 3

1 3 4

Sample Output: 

Yes No Yes

input()
a = tuple(map(int, input().split()))
for i in a:
  for j in range(1, 14):
    if j**j == i:
      print('Yes', end=' ')
      break
  else:
    print('No', end=' ')

How do you rate this article?

1


Lochard
Lochard

20240228 Arrived in the UK for about 2 week. All my fears persist. Some are even getting worse. https://github.com/locharp/asylum_diary/


As a newbie programmer
As a newbie programmer

Sharing entry level codes. My snippets on GitHub https://github.com/locharp/code-snippets

Send a $0.01 microtip in crypto to the author, and earn yourself as you read!

20% to author / 80% to me.
We pay the tips from our rewards pool.