CF685A.Robbers' watch

普及/提高-

通过率:0%

AC君温馨提醒

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

题目描述

Robbers, who attacked the Gerda's cab, are very successful in covering from the kingdom police. To make the goal of catching them even harder, they use their own watches.

First, as they know that kingdom police is bad at math, robbers use the positional numeral system with base 77 . Second, they divide one day in nn hours, and each hour in mm minutes. Personal watches of each robber are divided in two parts: first of them has the smallest possible number of places that is necessary to display any integer from 00 to n1n-1 , while the second has the smallest possible number of places that is necessary to display any integer from 00 to m1m-1 . Finally, if some value of hours or minutes can be displayed using less number of places in base 77 than this watches have, the required number of zeroes is added at the beginning of notation.

Note that to display number 00 section of the watches is required to have at least one place.

Little robber wants to know the number of moments of time (particular values of hours and minutes), such that all digits displayed on the watches are distinct. Help her calculate this number.

输入格式

The first line of the input contains two integers, given in the decimal notation, nn and mm ( 1<=n,m<=1091<=n,m<=10^{9} ) — the number of hours in one day and the number of minutes in one hour, respectively.

输出格式

Print one integer in decimal notation — the number of different pairs of hour and minute, such that all digits displayed on the watches are distinct.

输入输出样例

  • 输入#1

    2 3
    

    输出#1

    4
    
  • 输入#2

    8 2
    

    输出#2

    5
    

说明/提示

In the first sample, possible pairs are: (0:1)(0:1) , (0:2)(0:2) , (1:0)(1:0) , (1:2)(1:2) .

In the second sample, possible pairs are: (02:1)(02:1) , (03:1)(03:1) , (04:1)(04:1) , (05:1)(05:1) , (06:1)(06:1) .

首页