Logo
(追記) (追記ここまで)

24742번 - Simple Collatz Sequence 다국어

시간 제한메모리 제한제출정답맞힌 사람정답 비율
1 초 1024 MB86705981.944%

문제

The Simple Collatz Sequence (SCS) starting at an integer n, is defined by the formula:

S(k) = (k/2 if k is even, else (k+1))

The sequence is then n, S(n), S(S(n)), … until the value first reaches 1.

For example, starting at 11, we have:

11 -> 12 -> 6 -> 3 -> 4 -> 2 ->1

The sequence always ends at 1. (Fun Fact: The Hard Collatz Sequence sends odd k to 3*k+1. It is unknown whether that sequence always ends at 1.)

Let A(n) = number of steps in the SCS starting at n. For example, A(11) = 6.

Let C(n) = the number of integers m for which A(m) = n. For example, the integers for which A(n) = 6 are:

10, 11, 13, 24, 28, 30, 31, 64

So C(6) = 8.

Note that if n > 2m, then A(n) > m since we need to divide by 2 at least (m+1) times.

Write a program to compute C(m).

입력

Input consists of a single line which contains a decimal integer, m, (1 ≤ m ≤ 40000), which is the value for which C(m) is to be found.

출력

The output consists of a single line that contains the value of C(m) modulo 1000007.

제한

예제 입력 1

6

예제 출력 1

8

예제 입력 2

12345

예제 출력 2

540591

힌트

출처

ICPC > Regionals > North America > Greater New York Region > 2021 Greater New York Programming Contest G번

(追記) (追記ここまで)

출처

대학교 대회

  • 사업자 등록 번호: 541-88-00682
  • 대표자명: 최백준
  • 주소: 서울시 서초구 서초대로74길 29 서초파라곤 412호
  • 전화번호: 02-521-0487 (이메일로 연락 주세요)
  • 이메일: contacts@startlink.io
  • 통신판매신고번호: 제 2017-서울서초-2193 호

AltStyle によって変換されたページ (->オリジナル) /