CF1646E.Power Board

普及/提高-

通过率:0%

AC君温馨提醒

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

题目描述

You have a rectangular board of size n×mn\times m ( nn rows, mm columns). The nn rows are numbered from 11 to nn from top to bottom, and the mm columns are numbered from 11 to mm from left to right.

The cell at the intersection of row ii and column jj contains the number iji^j ( ii raised to the power of jj ). For example, if n=3n=3 and m=3m=3 the board is as follows:

Find the number of distinct integers written on the board.

输入格式

The only line contains two integers nn and mm ( 1n,m1061\le n,m\le 10^6 ) — the number of rows and columns of the board.

输出格式

Print one integer, the number of distinct integers on the board.

输入输出样例

  • 输入#1

    3 3

    输出#1

    7
  • 输入#2

    2 4

    输出#2

    5
  • 输入#3

    4 2

    输出#3

    6

说明/提示

The statement shows the board for the first test case. In this case there are 77 distinct integers: 11 , 22 , 33 , 44 , 88 , 99 , and 2727 .

In the second test case, the board is as follows:

There are 55 distinct numbers: 11 , 22 , 44 , 88 and 1616 .

In the third test case, the board is as follows:

There are 66 distinct numbers: 11 , 22 , 33 , 44 , 99 and 1616 .

首页