测评会员优惠活动进行中 · 开通 VIP,有效期内测评不限次 VIP 优惠中 · 测评不限次 立即查看

A11185. Paths

编程题 普及/提高-

题目描述

You are given a positive integer $n$ . Let's build a graph on vertices $1,2,...,n$ in such a way that there is an edge between vertices $u$ and $v$ if and only if ![](/uploads/acgo/image/8d108ddebc260c95_f9470f89f4e9.jpeg). Let $d(u,v)$ be the shortest distance between $u$ and $v$ , or $0$ if there is no path between them. Compute the sum of values $d(u,v)$ over all $1<=u<v<=n$ .

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

输入格式

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

输出格式

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

输入输出样例

输入 #1
6
输出 #1
8
输入 #2
10
输出 #2
44

说明/提示

All shortest paths in the first example:

- ![](/uploads/acgo/image/99d0ca51d683c528_0112899b667c.jpeg)
- ![](/uploads/acgo/image/480cdcfa10d947ce_ad013b794bbe.jpeg)
- ![](/uploads/acgo/image/c0bf8248870d9957_ecdbef6ce1bc.jpeg)
- ![](/uploads/acgo/image/3cd9d9409e8059c8_cc4c9af53d10.jpeg)
- ![](/uploads/acgo/image/26def3b7e7b4319c_c18e33b63d58.jpeg)
- ![](/uploads/acgo/image/ccdbe15ba0e38413_40d914df7028.jpeg)

There are no paths between other pairs of vertices.

The total distance is $2+1+1+2+1+1=8$ .
上一题 去做题 下一题