지나가던 개발자

[Python] 백준 13706번(제곱근) 문제 풀이 본문

PS/Python

[Python] 백준 13706번(제곱근) 문제 풀이

KwonYongHyeon 2022. 11. 16. 16:29

 

import math
print(math.isqrt(int(input())))

 

원래 이분 탐색을 사용하는 문제인데 이렇게 해도 풀린다... ㄷ

 

Comments