-코드
from math import sqrt
t = int(input())
for _ in range(t):
n = int(input())
print(int(sqrt(n)))
'Beakjoon&프로그래머스 > 파이썬' 카테고리의 다른 글
[백준/파이썬]11179번 2진수 뒤집기 (0) | 2021.06.12 |
---|---|
[백준/파이썬]11655번 ROT13 (0) | 2021.06.11 |
[백준/파이썬]2738번 행렬 덧셈 (0) | 2021.06.09 |
[백준/파이썬]9625번 BABBA (0) | 2021.06.09 |
[백준/파이썬]5533번 유니크 (0) | 2021.06.08 |