diff options
| author | omagdy7 <omar.professional8777@gmail.com> | 2022-06-28 01:03:54 +0200 |
|---|---|---|
| committer | omagdy7 <omar.professional8777@gmail.com> | 2022-06-28 01:03:54 +0200 |
| commit | 7860cb994fbf6af63865eb6dc9045bbc8abd61a4 (patch) | |
| tree | 0cf4fab4387fd47ee8c6d4e2a069cc96579df6dc /UltraFastMathmatician | |
| parent | 13ae5b6eaaa4779009633eda567b4f1735669ac3 (diff) | |
| download | competitive-programming-7860cb994fbf6af63865eb6dc9045bbc8abd61a4.tar.xz competitive-programming-7860cb994fbf6af63865eb6dc9045bbc8abd61a4.zip | |
solved a couple of problems from codefoces
Diffstat (limited to 'UltraFastMathmatician')
| -rw-r--r-- | UltraFastMathmatician/inp | 0 | ||||
| -rwxr-xr-x | UltraFastMathmatician/main | bin | 0 -> 30640 bytes | |||
| -rw-r--r-- | UltraFastMathmatician/main.cpp | 15 | ||||
| -rw-r--r-- | UltraFastMathmatician/main_input0.txt | 2 | ||||
| -rw-r--r-- | UltraFastMathmatician/main_input1.txt | 2 | ||||
| -rw-r--r-- | UltraFastMathmatician/main_input2.txt | 2 | ||||
| -rw-r--r-- | UltraFastMathmatician/main_input3.txt | 2 | ||||
| -rw-r--r-- | UltraFastMathmatician/main_output0.txt | 1 | ||||
| -rw-r--r-- | UltraFastMathmatician/main_output1.txt | 1 | ||||
| -rw-r--r-- | UltraFastMathmatician/main_output2.txt | 1 | ||||
| -rw-r--r-- | UltraFastMathmatician/main_output3.txt | 1 |
11 files changed, 27 insertions, 0 deletions
diff --git a/UltraFastMathmatician/inp b/UltraFastMathmatician/inp new file mode 100644 index 0000000..e69de29 --- /dev/null +++ b/UltraFastMathmatician/inp diff --git a/UltraFastMathmatician/main b/UltraFastMathmatician/main Binary files differnew file mode 100755 index 0000000..9553c2a --- /dev/null +++ b/UltraFastMathmatician/main diff --git a/UltraFastMathmatician/main.cpp b/UltraFastMathmatician/main.cpp new file mode 100644 index 0000000..83ef653 --- /dev/null +++ b/UltraFastMathmatician/main.cpp @@ -0,0 +1,15 @@ +#include<bits/stdc++.h> + +using namespace std; + +int main () { + ios_base::sync_with_stdio(false); + cin.tie(NULL); + string s1, s2; + cin >> s1 >> s2; + string ans=""; + for(int i = 0; i < s1.size(); i++) { + ans+=((s1[i] - '0') ^ (s2[i] - '0') + '0'); + } + cout << ans << endl; +} diff --git a/UltraFastMathmatician/main_input0.txt b/UltraFastMathmatician/main_input0.txt new file mode 100644 index 0000000..4443be3 --- /dev/null +++ b/UltraFastMathmatician/main_input0.txt @@ -0,0 +1,2 @@ +1010100 +0100101 diff --git a/UltraFastMathmatician/main_input1.txt b/UltraFastMathmatician/main_input1.txt new file mode 100644 index 0000000..8156dd5 --- /dev/null +++ b/UltraFastMathmatician/main_input1.txt @@ -0,0 +1,2 @@ +000 +111 diff --git a/UltraFastMathmatician/main_input2.txt b/UltraFastMathmatician/main_input2.txt new file mode 100644 index 0000000..e530a3e --- /dev/null +++ b/UltraFastMathmatician/main_input2.txt @@ -0,0 +1,2 @@ +1110 +1010 diff --git a/UltraFastMathmatician/main_input3.txt b/UltraFastMathmatician/main_input3.txt new file mode 100644 index 0000000..bd9a857 --- /dev/null +++ b/UltraFastMathmatician/main_input3.txt @@ -0,0 +1,2 @@ +01110 +01100 diff --git a/UltraFastMathmatician/main_output0.txt b/UltraFastMathmatician/main_output0.txt new file mode 100644 index 0000000..a5e2249 --- /dev/null +++ b/UltraFastMathmatician/main_output0.txt @@ -0,0 +1 @@ +1110001 diff --git a/UltraFastMathmatician/main_output1.txt b/UltraFastMathmatician/main_output1.txt new file mode 100644 index 0000000..58c9bdf --- /dev/null +++ b/UltraFastMathmatician/main_output1.txt @@ -0,0 +1 @@ +111 diff --git a/UltraFastMathmatician/main_output2.txt b/UltraFastMathmatician/main_output2.txt new file mode 100644 index 0000000..e199843 --- /dev/null +++ b/UltraFastMathmatician/main_output2.txt @@ -0,0 +1 @@ +0100 diff --git a/UltraFastMathmatician/main_output3.txt b/UltraFastMathmatician/main_output3.txt new file mode 100644 index 0000000..f7194c0 --- /dev/null +++ b/UltraFastMathmatician/main_output3.txt @@ -0,0 +1 @@ +00010 |
