[Python] BOJ 2417번. 정수 제곱근 작성일 2020-08-18 | In Algorithm | 2417번. 정수 제곱근 문제 링크 https://www.acmicpc.net/problem/2417 풀이 코드 1234567891011# 2417번. 정수 제곱근 n = int(input()) tempRoot = n**0.5 # 제곱근 if(tempRoot-int(tempRoot) == 0): # 정수라면 print(int(tempRoot)) else: print(int(tempRoot)+1) 비고