Recent Posts
Notice
No Rules Rules
합금 주화 (feat. 백준, 27963번) 본문
728x90
반응형
합금 주화
https://www.acmicpc.net/problem/27963
// woohyeon.kim
// kim519620.tistory.com
#include <iostream>
using namespace std;
int main() {
ios::sync_with_stdio(false), cin.tie(NULL);
register int D1, D2, X;
cin >> D1 >> D2 >> X;
printf("%.6f", 100 / ((X + 0.) / max(D1, D2) + (100. - X) / min(D1, D2)));
return 0;
}
// *&)*@*
반응형
단순 연산 문제입니다.
728x90
반응형
'생활 > 코테' 카테고리의 다른 글
물대기 (feat. 백준, 1368번) (0) | 2023.04.19 |
---|---|
MST 게임 (feat. 백준, 16202번) (0) | 2023.04.18 |
오렌지먹은지오랜지 (feat. 백준, 27962번) (0) | 2023.04.18 |
사격 내기 (feat. 백준, 27960번) (0) | 2023.04.18 |
장난감 조립 (feat. 백준, 2637번) (0) | 2023.04.17 |
Comments