RiseOJ는 solved.ac와 제휴 관계가 없습니다. 티어 아이콘 © solved.ac. solved.ac
포럼
R03561

J2. Epidemiology

Unrated 레이팅 미적용
난이도
2s
시간 제한
256MB
메모리 제한
0
맞았습니다!!
0
제출 수
0.0%
정답률
레이팅

의견: 0

설명

People who study epidemiology use models to analyze the spread of
disease. In this problem, we use a simple model.

When a person has a disease, they infect exactly \(R\) other people but only on the very next
day. No person is infected more than once. We want to determine when a
total of more than \(P\) people have
had the disease.

(This problem was designed before the current coronavirus
outbreak, and we acknowledge the distress currently being experienced by
many people worldwide because of this and other diseases. We hope that
including this problem at this time highlights the important roles that
computer science and mathematics play in solving real-world
problems.)

제약

\(P \leq 10^7\)
\(N \leq P\)
\(R \leq 10\)

입력 형식

There are three lines of input. Each line contains one positive integer.
The first line contains the value of \(P\). The second line contains \(N\), the number of people who have the
disease on Day \(0\). The third line
contains the value of \(R\). Assume
that \(P \leq 10^7\) and \(N \leq P\) and \(R \leq 10\).

출력 형식

Output the number of the first day on which the total number of people
who have had the disease is greater than \(P\).

예제 1
입력
750
1
5
출력
4
설명

The \(1\) person on Day \(0\) with the disease infects \(5\) people on Day \(1\). On Day \(2\), exactly \(25\) people are infected. On Day \(3\), exactly \(125\) people are infected. A total of \(1+5+25+125+625=781\) people have had the
disease by the end of Day \(4\) and
\(781 > 750\).

예제 2
입력
10
2
1
출력
5
설명

There are \(2\) people on Day 0 with
the disease. On each other day, exactly \(2\) people are infected. By the end of Day
\(4\), a total of exactly \(10\) people have had the disease and by the
end of Day \(5\), more than \(10\) people have had the disease.

문제 정보

생성자가 기록되지 않았습니다.

출처 CCC 2020 Junior

평가 및 의견

J2. Epidemiology

개요
출제자 난이도 Unrated 레이팅 미적용 의견 0 / 50 공개 집계 (커뮤니티 난이도, 주요 주제, 품질)는 의견이 충분히 모이면 공개됩니다.

Log in to rate problems.

개별 의견

아직 의견이 없습니다. 자격이 된다면 위 양식에서 가장 먼저 평가해 보세요.

풀이 제출

J2. Epidemiology

게스트로 둘러보고 있습니다. 로그인하면 풀이를 제출하고 진행 상황을 확인할 수 있습니다. 로그인하고 제출하기
공개
C++20 Tab 들여쓰기 · Ctrl+/ 주석 토글 · Enter 자동 들여쓰기
1 1 1 0 공백: 4 · UTF-8