No Rules Rules

Abbey Courtyard (feat. 백준, 15610번) 본문

생활/코테

Abbey Courtyard (feat. 백준, 15610번)

개발하는 완두콩 2022. 9. 8. 16:01
728x90
반응형

Abbey Courtyard
https://www.acmicpc.net/problem/15610

 

15610번: Abbey Courtyard

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 festi

www.acmicpc.net

 

반응형

 

// woohyeon.kim
// kim519620.tistory.com
#include <iostream>
#include <cmath>
using namespace std;
int main() {
    double a;
    cin >> a;
    printf("%.8f", sqrt(a) * 4);
    return 0;
}
// *&)*@*

 

 

평방미터(m^2) 단위의 실수를 입력받고 정사각형의 둘레 길이(m)의 총 합을 출력하는 문제입니다.

 

 

728x90
반응형

'생활 > 코테' 카테고리의 다른 글

Atrium (feat. 백준, 20353번)  (0) 2022.09.08
Contemporary Art (feat. 백준, 16600번)  (0) 2022.09.08
공 (feat. 백준, 2695번)  (0) 2022.09.08
금고 테스트 (feat. 백준, 2266번)  (0) 2022.09.08
Fly me to the Alpha Centauri  (0) 2022.09.08
Comments