-
Codeforces Round #614 (Div. 2) - B. JOE is on TV!코드포스(CodeForce) 2020. 1. 20. 14:53반응형
https://codeforces.com/contest/1293/problem/B
문제는 이해하지 못했고 예제 문제 답을 보고 유추 해서 접근 하였다....
#include <stdio.h> #include <stack> #include <string> #include <vector> #include <map> #include <algorithm> using namespace std; int main() { int n; scanf("%d", &n); double sol = 0; while (true) { sol = sol + ((double)1 / n); n--; if (n == 0) { break; } } printf("%0.12f", sol); return 0; }
반응형'코드포스(CodeForce)' 카테고리의 다른 글
Codeforces Round #616 (Div. 2) - A. Even But Not Even (0) 2020.02.03 Codeforces Round #524 (Div. 2) - A. Petya and Origami (0) 2020.01.20 Codeforces Round #614 (Div. 2) - A. ConneR and the A.R.C. Markland-N (0) 2020.01.20 Code605s Round # 605 (Div. 3) (0) 2020.01.16 Codeforces Round #613 (Div. 2) (0) 2020.01.16