#F. F - Division or Subtraction

    传统题 1000ms 256MiB

F - Division or Subtraction

该比赛已结束,您无法在比赛模式下递交该题目。您可以点击“在题库中打开”以普通模式查看和递交本题。

F - Division or Subtraction

Score : $600$ points

Problem Statement

Given is a positive integer $N$.

We will choose an integer $K$ between $2$ and $N$ (inclusive), then we will repeat the operation below until $N$ becomes less than $K$.

  • Operation: if $K$ divides $N$, replace $N$ with $N/K$; otherwise, replace $N$ with $N-K$.

In how many choices of $K$ will $N$ become $1$ in the end?

Constraints

  • $2 \leq N \leq 10^{12}$
  • $N$ is an integer.

Input

Input is given from Standard Input in the following format:

NN

Output

Print the number of choices of $K$ in which $N$ becomes $1$ in the end.


6
3

There are three choices of $K$ in which $N$ becomes $1$ in the end: $2$, $5$, and $6$.

In each of these choices, $N$ will change as follows:

  • When $K=2$: $6 \to 3 \to 1$
  • When $K=5$: $6 \to 1$
  • When $K=6$: $6 \to 1$

3141
13

314159265358
9

2024寒假入门组刷题营(八)

未参加
状态
已结束
规则
ACM/ICPC
题目
8
开始于
2024-2-5 13:30
结束于
2024-2-5 15:30
持续时间
2 小时
主持人
参赛人数
8