본문 바로가기
Beakjoon&프로그래머스/파이썬

[백준/파이썬]6359번 만취한 상범

by 현장 2021. 6. 10.

-코드

from math import sqrt
t = int(input())
for _ in range(t):
    n = int(input())
    print(int(sqrt(n)))