#ABC152D. Handstand 2

Handstand 2

题目描述

Given is a positive integer NN.
Find the number of pairs (A,B)(A, B) of positive integers not greater than NN that satisfy the following condition:

  • When AA and BB are written in base ten without leading zeros, the last digit of AA is equal to the first digit of BB, and the first digit of AA is equal to the last digit of BB.

给定正整数 NN
求满足以下条件的不大于 NN 的正整数对 (A,B)(A, B) 的个数:

  • 当把 AABB 写成不含前导零的十进制数时, AA 的末位数字等于 BB 的首位数字,而 AA 的首位数字等于 BB 的末位数字。

输入格式

输入内容按以下格式标准输入:

NN

输出格式

打印答案。

样例 #1

样例输入 #1

25

样例输出 #1

17

样例 #2

样例输入 #2

1

样例输出 #2

1

样例 #3

样例输入 #3

100

样例输出 #3

108

样例 #4

样例输入 #4

2020

样例输出 #4

40812

样例 #5

样例输入 #5

200000

样例输出 #5

400000008

说明

数据规模与约定

  • 1N2×1051 \leq N \leq 2 \times 10^5
  • 所有输入值均为整数。

样例 11 解释

以下 1717 对满足条件: (1,1)(1,1)(1,11)(1,11)(2,2)(2,2)(2,22)(2,22)(3,3)(3,3)(4,4)(4,4)(5,5)(5,5)(6,6)(6,6)(7,7)(7,7)(8,8)(8,8)(9,9)(9,9)(11,1)(11,1)(11,11)(11,11)(12,21)(12,21)(21,12)(21,12)(22,2)(22,2)(22,22)(22,22)