CF540A.Combination Lock

普及/提高-

通过率:0%

AC君温馨提醒

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

题目描述

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.

The combination lock is represented by nn 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 nn ( 1<=n<=10001<=n<=1000 ) — the number of disks on the combination lock.

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

The third line contains a string of nn 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:
  • 2 disk:
  • 3 disk:
  • 4 disk:
  • 5 disk:
首页