반응형
백준: 15610번 Abbey Courtyard (Python3)
Abbey Courtyard 성공스페셜 저지다국어
시간 제한메모리 제한제출정답맞힌 사람정답 비율
1 초 | 512 MB | 1455 | 1068 | 979 | 75.134% |
문제
Bath’s annual Christmas market runs from the 23rd of November 2017 until the 10th of December 2017. During this time, the market will occupy the entire square courtyard of Bath Abbey.
To brighten things up at night, a single long strand of cheerful festive lights will be run along all four equally long edges of the courtyard.
You will be in charge of buying the electrical wiring to which the lights will be affixed. How much will you need to use to outline the whole Christmas market with festive lights?
입력
The input consists of:
- One line with an integer a (1 ≤ a ≤ 1018), the area in square metres of the yard.
출력
Output the total length of electrical wiring needed for the market, in metres. The length should be accurate to an absolute or relative error of at most 10−6.
예제 입력 1
64
예제 출력 1
32.0
예제 입력 2
1234
예제 출력 2
140.51334456
답안
1
|
import math; print(math.sqrt(int(input()))*4)
|
cs |
반응형
'공부 > 코딩테스트' 카테고리의 다른 글
백준: 15474번 鉛筆 (Pencils) (Python3) (0) | 2022.08.06 |
---|---|
백준: 15552번 빠른 A+B (Python3) (0) | 2022.08.06 |
백준: 14065번 Gorivo (Python3) (0) | 2022.08.05 |
백준: 14038번 Tournament Selection (Python3) (0) | 2022.08.05 |
백준: 13985번 Equality (Python3) (0) | 2022.08.05 |
댓글