-Code
from math import sqrt
from sys import stdin
input = stdin.readline
for _ in range(int(input())):
n = int(input())
res = ""
if n % 2 == 1:
res += "O"
if int(sqrt(n)) ** 2 == n:
res += "S"
if res == "":
res = "EMPTY"
print(res)
'Beakjoon&프로그래머스 > 파이썬' 카테고리의 다른 글
[백준/파이썬] 9297번 Reducing Improper Fractions (1) | 2024.12.14 |
---|---|
[백준/파이썬] 6812번 Good times (0) | 2024.12.13 |
[백준/파이썬] 25278번 Terraforming (0) | 2024.12.11 |
[백준/파이썬] 32800번 Bus Assignment (0) | 2024.12.10 |
[백준/파이썬] 32929번 UOS 문자열 (1) | 2024.12.09 |