Recent Posts
Notice
No Rules Rules
Contemporary Art (feat. 백준, 16600번) 본문
728x90
반응형
Contemporary Art
https://www.acmicpc.net/problem/16600
16600번: Contemporary Art
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
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
반응형
'생활 > 코테' 카테고리의 다른 글
꿍의 우주여행 (feat. 백준, 9501번) (0) | 2022.09.08 |
---|---|
Atrium (feat. 백준, 20353번) (0) | 2022.09.08 |
Abbey Courtyard (feat. 백준, 15610번) (0) | 2022.09.08 |
공 (feat. 백준, 2695번) (0) | 2022.09.08 |
금고 테스트 (feat. 백준, 2266번) (0) | 2022.09.08 |
Comments