跳到主要内容
图灵 OJTURING / ONLINE JUDGE

#F2179. Fox and Perfect Sets

    ID: 2185 传统题 2000ms 256MiB 尝试: 0 已通过: 0 难度: 9 上传者: 标签>数学挑战难度共享题库Codeforces英文题面题目来源题面语言

Fox and Perfect Sets

题目描述

D. Fox and Perfect Sets
time limit per test
1 second
memory limit per test
256 megabytes
input
standard input
output
standard output

Fox Ciel studies number theory.

She thinks a non-empty set S contains non-negative integers is perfect if and only if for any (a can be equal to b), . Where operation xor means exclusive or operation (http://en.wikipedia.org/wiki/Exclusive_or).

Please calculate the number of perfect sets consisting of integers not greater than k. The answer can be very large, so print it modulo 1000000007 (109+7).

Input

The first line contains an integer k (0≤k≤109).

Output

Print a single integer − the number of required sets modulo 1000000007 (109+7).

Examples
Input
1
Output
2
Input
2
Output
3
Input
3
Output
5
Input
4
Output
6
Note

In example 1, there are 2 such sets: {0} and {0, 1}. Note that {1} is not a perfect set since 1 xor 1 = 0 and {1} doesn't contain zero.

In example 4, there are 6 such sets: {0}, {0, 1}, {0, 2}, {0, 3}, {0, 4} and {0, 1, 2, 3}.


题目来源:fps-www.educg.net-codeforce-1-2833.xml.zip;FPS 共享题包,题包内第 1783 题。保留原作者与原赛事署名。