No Rules Rules

Atrium (feat. 백준, 20353번) 본문

생활/코테

Atrium (feat. 백준, 20353번)

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

Atrium
https://www.acmicpc.net/problem/20353

 

20353번: Atrium

The atrium of a traditional Roman dormus, much like the atria of today, is a perfectly square room designed for residents and guests to congregate in and to enjoy the sunlight streaming in from above. Or, in the case of Britannia, the rain streaming in fro

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;
}
// *&)*@*

 

 

아래 "Abbey Courtyard" 와 동일한 문제입니다.

Abbey Courtyard (feat. 백준, 15610번) (tistory.com)

 

 

728x90
반응형
Comments