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

A9962. Combination Lock

编程题 普及/提高-

题目描述

Scrooge McDuck keeps his most treasured savings in a home safe with a combination lock. Each time he wants to put there the treasures that he's earned fair and square, he has to open the lock.

![](/uploads/acgo/image/fabffc0a3ed12f90_ffd011e22b01.jpeg)The combination lock is represented by $n$ rotating disks with digits from 0 to 9 written on them. Scrooge McDuck has to turn some disks so that the combination of digits on the disks forms a secret combination. In one move, he can rotate one disk one digit forwards or backwards. In particular, in one move he can go from digit 0 to digit 9 and vice versa. What minimum number of actions does he need for that?

输入格式

The first line contains a single integer $n$ ( $1<=n<=1000$ ) — the number of disks on the combination lock.

The second line contains a string of $n$ digits — the original state of the disks.

The third line contains a string of $n$ digits — Scrooge McDuck's combination that opens the lock.

输出格式

Print a single integer — the minimum number of moves Scrooge McDuck needs to open the lock.

输入输出样例

输入 #1
5
82195
64723
输出 #1
13

说明/提示

In the sample he needs 13 moves:

- 1 disk: ![](/uploads/acgo/image/644aa31cf928f19b_3ab5f1c5adb6.jpeg)
- 2 disk: ![](/uploads/acgo/image/98fa587a26220830_db0c41099c48.jpeg)
- 3 disk: ![](/uploads/acgo/image/3450aa64d9af1763_d25dd6dfa3bc.jpeg)
- 4 disk: ![](/uploads/acgo/image/1d22b85ce52e2a06_78c5dad8fbfd.jpeg)
- 5 disk: ![](/uploads/acgo/image/5f982e63aada0ecd_60b6f1d025ee.jpeg)
上一题 去做题 下一题