diff options
Diffstat (limited to 'cses/BitStrings')
| -rwxr-xr-x | cses/BitStrings/main | bin | 22544 -> 0 bytes | |||
| -rw-r--r-- | cses/BitStrings/main.cpp | 16 | ||||
| -rw-r--r-- | cses/BitStrings/main_input0.txt | 1 | ||||
| -rw-r--r-- | cses/BitStrings/main_output0.txt | 1 |
4 files changed, 0 insertions, 18 deletions
diff --git a/cses/BitStrings/main b/cses/BitStrings/main Binary files differdeleted file mode 100755 index 177fec4..0000000 --- a/cses/BitStrings/main +++ /dev/null diff --git a/cses/BitStrings/main.cpp b/cses/BitStrings/main.cpp deleted file mode 100644 index db812c5..0000000 --- a/cses/BitStrings/main.cpp +++ /dev/null @@ -1,16 +0,0 @@ -#include<bits/stdc++.h> - -using namespace std; - -int main () { - ios_base::sync_with_stdio(false); - cin.tie(NULL); - int n; - int m = 1e9 + 7; - cin >> n; - long long ans = 0; - while(n--) { - ans += ((2 % m) * (2 % m)) % m; - } - cout << ans << '\n'; -} diff --git a/cses/BitStrings/main_input0.txt b/cses/BitStrings/main_input0.txt deleted file mode 100644 index 00750ed..0000000 --- a/cses/BitStrings/main_input0.txt +++ /dev/null @@ -1 +0,0 @@ -3 diff --git a/cses/BitStrings/main_output0.txt b/cses/BitStrings/main_output0.txt deleted file mode 100644 index 45a4fb7..0000000 --- a/cses/BitStrings/main_output0.txt +++ /dev/null @@ -1 +0,0 @@ -8 |
