CF870F.Paths

普及/提高-

通过率:0%

AC君温馨提醒

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

题目描述

You are given a positive integer nn . Let's build a graph on vertices 1,2,...,n1,2,...,n in such a way that there is an edge between vertices uu and vv if and only if . Let d(u,v)d(u,v) be the shortest distance between uu and vv , or 00 if there is no path between them. Compute the sum of values d(u,v)d(u,v) over all 1<=u<v<=n1<=u<v<=n .

The gcdgcd (greatest common divisor) of two positive integers is the maximum positive integer that divides both of the integers.

输入格式

Single integer nn ( 1<=n<=1071<=n<=10^{7} ).

输出格式

Print the sum of d(u,v)d(u,v) over all 1<=u<v<=n1<=u<v<=n .

输入输出样例

  • 输入#1

    6
    

    输出#1

    8
    
  • 输入#2

    10
    

    输出#2

    44
    

说明/提示

All shortest paths in the first example:

There are no paths between other pairs of vertices.

The total distance is 2+1+1+2+1+1=82+1+1+2+1+1=8 .

首页