zoukankan      html  css  js  c++  java
  • C

    Problem description

    Fafa owns a company that works on huge projects. There are n employees in Fafa's company. Whenever the company has a new project to start working on, Fafa has to divide the tasks of this project among all the employees.

    Fafa finds doing this every time is very tiring for him. So, he decided to choose the best l employees in his company as team leaders. Whenever there is a new project, Fafa will divide the tasks among only the team leaders and each team leader will be responsible of some positive number of employees to give them the tasks. To make this process fair for the team leaders, each one of them should be responsible for the same number of employees. Moreover, every employee, who is not a team leader, has to be under the responsibility of exactly one team leader, and no team leader is responsible for another team leader.

    Given the number of employees n, find in how many ways Fafa could choose the number of team leaders l in such a way that it is possible to divide employees between them evenly.

    Input

    The input consists of a single line containing a positive integer n (2 ≤ n ≤ 105) — the number of employees in Fafa's company.

    Output

    Print a single integer representing the answer to the problem.

    Examples

    Input

    2

    Output

    1

    Input

    10

    Output

    3

    Note

    In the second sample Fafa has 3 ways:

    • choose only 1 employee as a team leader with 9 employees under his responsibility.
    • choose 2 employees as team leaders with 4 employees under the responsibility of each of them.
    • choose 5 employees as team leaders with 1 employee under the responsibility of each of them.

    解题思路:结合提示,再多举几个栗子,将会发现问题求解其实是求n的因子个数(不包括n),水过!

    AC代码:

     1 #include <bits/stdc++.h>
     2 using namespace std;
     3 int main()
     4 {
     5     int n;
     6     cin>>n;
     7     int num=1;
     8     for(int i=2;i<=n/2;++i)
     9         if(n%i==0)num++;
    10     cout<<num<<endl;
    11     return 0;
    12 }
  • 相关阅读:
    禁止在工作流设计器启动持续活动的重新编译
    设计流程 工作流
    workflow 工作流
    访问调度控制 时间控件
    如何:实现一个视图项目
    Python多线程之threading.Thread实现
    gcc 编译流程分析
    如何编写Makefile?
    linux 文件夹的颜色代表什么意思
    STL容器的迭代器失效的原因
  • 原文地址:https://www.cnblogs.com/acgoto/p/9105218.html
Copyright © 2011-2022 走看看