python-algorithm

백준 2417 정수 제곱근

무적김두칠 2021. 12. 6. 11:39

1
2
3
import math
n=int(input())
print( math.ceil(math.sqrt(n)))
cs

내장함수를 이용하도록 합시다 ^^;

반응형