[백준] Contemporary Art (16600)(kotlin)

원본 문제

문제 설명

At the Van Abbemuseum of modern and contemporary art in Eindhoven, we always look to present our muses in the most interesting way possible. Sometimes we have our work cut out for us.

Today we are exploring whether we can modify one of our perfectly-square picture frames (such as the one shown in Figure C.1) to include an electrical filament. The purpose of this filament is so that the image can set itself alight at some opportune and hilarious moment—for example, in the middle of a sale by auction.

You will be responsible for buying the filament to run around the entire perimeter of the artwork. How many centimetres will you need to obtain?

Figure C.1

Figure C.1: A test subject for the frame.

입력

The input consists of:

  • One line with an integer a (1 ≤ a ≤ 10^18), the area of the image in square centimetres.

출력

Output the total length of filament needed for the frame, in centimetres. Your answer should have an absolute or relative error of at most 10^-6.

테스트 케이스

입력 출력
64 32.0
1234 140.51334456

문제 풀이1

import kotlin.math.sqrt

fun main(args: Array<String>) = println(
    String.format("%.6f", sqrt(readLine()!!.toFloat()) * 4)
)