CF284A.Cows and Primitive Roots

普及/提高-

通过率:0%

AC君温馨提醒

该题目为【codeforces】题库的题目,您提交的代码将被提交至codeforces进行远程评测,并由ACGO抓取测评结果后进行展示。由于远程测评的测评机由其他平台提供,我们无法保证该服务的稳定性,若提交后无反应,请等待一段时间后再进行重试。

题目描述

The cows have just learned what a primitive root is! Given a prime pp , a primitive root is an integer xx (1<=x<p) such that none of integers x1,x21,...,xp21x-1,x^{2}-1,...,x^{p-2}-1 are divisible by pp , but xp11x^{p-1}-1 is.

Unfortunately, computing primitive roots can be time consuming, so the cows need your help. Given a prime pp , help the cows find the number of primitive roots .

输入格式

The input contains a single line containing an integer pp (2<=p<2000) . It is guaranteed that pp is a prime.

输出格式

Output on a single line the number of primitive roots .

输入输出样例

  • 输入#1

    3
    

    输出#1

    1
    
  • 输入#2

    5
    

    输出#2

    2
    

说明/提示

The only primitive root is 2.2.

The primitive roots are 22 and 3.3.

首页