Back to Browse

PYTHON Bit String Algorithm - CSES Introductory Problems #9

365 views
Jun 1, 2020
2:25

Github: https://github.com/BunnyHeist/CSEC Your task is to calculate the number of bit strings of length n. For example, if n=3, the correct answer is 8, because the possible bit strings are 000, 001, 010, 011, 100, 101, 110, and 111. Input The only input line has an integer n. Output Print the result modulo 109+7. Constraints 1≤n≤106 Example Input: 3 Output: 8

Download

0 formats

No download links available.

PYTHON Bit String Algorithm - CSES Introductory Problems #9 | NatokHD