Foj 1559 Count Zeros

Problem 1559 Count Zeros

Accept: 143    Submit: 416
Time Limit: 1000 mSec    Memory Limit : 32768 KB

 

 Problem Description

As is known to us all, any positive decimal integer can be expressed into a unique binary digit. For example the decimal number 13 can be expressed in the form of binary digit as 1101, your task is to count the total number of 0s in the binary digit of 1..2n. For example, if n = 2, then 2n = 4. Binary digits of 1,2,3,4 are 1,10,11,100. So the number of 0s is 3.

 Input

There are multiple test cases. Each test case contains a non-negative integer n (n<=5000)

 Output

For each test case, print the number of 0s which the binary digits of 1..2n contains. The result may be vary large, so output it mod 2007.

 Sample Input

2
3

 Sample Output

3
8
推公式,
t[n]=3*t[n-1]-2*t[n-2]+2^(n-2)-1
汗死,
把t[1]写成0了, wa了无数次.......
orz...
orz...
orz...
这是暴力的Java代码
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值