Codeforces Round #139 (Div. 2) E. Unsolvable

37 篇文章 0 订阅
24 篇文章 0 订阅


E. Unsolvable
time limit per test
2 seconds
memory limit per test
256 megabytes
input
standard input
output
standard output

Consider the following equation:

where sign  [a] represents the integer part of number  a.

Let's find all integer z (z > 0), for which this equation is unsolvable in positive integers. The phrase "unsolvable in positive integers" means that there are no such positive integers x and y (x, y > 0), for which the given above equation holds.

Let's write out all such z in the increasing order: z1, z2, z3, and so on (zi < zi + 1). Your task is: given the number n, find the number zn.

Input

The first line contains a single integer n (1 ≤ n ≤ 40).

Output

Print a single integer — the number zn modulo 1000000007 (109 + 7). It is guaranteed that the answer exists.

Sample test(s)
input
1
output
1
input
2
output
3
input
3
output
15
题意:梅森素数,最近在学这个,可是题目做的太少啦,乍一看没看出来!用了一个快速幂取模,因为数据很少,就直接枚举出来啦。

代码:

 

#include<iostream>
#include<algorithm>
#include<cstring>
#include<cstdio>
#define mod 1000000007
using namespace std;
typedef long long LL;
LL n;
LL a[45]={0,2,3,5,7,13,17,19,31,61,89,107,127,521,607,
1279,2203,2281,3217,4253,4423,9689,9941,
11213,19937,21701,23209,44497,86243,
110503,132049,216091,756839,859433,
1257787,1398269,2976221,3021377,6972593,13466917,20996011};
LL ll(LL x,LL k)
 {
     LL b=1;
    while(k>0)
     {
          if(k&1)
            b=(b*x)%mod;
          x=(x*x)%mod;
         k>>=1;
     }
    return b;
 }
int main()
{
  while(~scanf("%lld",&n))
   {
       printf("%lld\n",ll(2,a[n]-1)-1);
   }
    return 0;
}




评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值