From c52b36c6a37fdb1d1de146d3939cb42e2c691f44 Mon Sep 17 00:00:00 2001 From: omagdy7 Date: Sat, 5 Nov 2022 01:28:02 +0200 Subject: Solved 6 problem in filtrationContest and restructured the repo --- codeforces/UltraFastMathmatician/inp | 0 codeforces/UltraFastMathmatician/main | Bin 0 -> 30640 bytes codeforces/UltraFastMathmatician/main.cpp | 15 +++++++++++++++ codeforces/UltraFastMathmatician/main_input0.txt | 2 ++ codeforces/UltraFastMathmatician/main_input1.txt | 2 ++ codeforces/UltraFastMathmatician/main_input2.txt | 2 ++ codeforces/UltraFastMathmatician/main_input3.txt | 2 ++ codeforces/UltraFastMathmatician/main_output0.txt | 1 + codeforces/UltraFastMathmatician/main_output1.txt | 1 + codeforces/UltraFastMathmatician/main_output2.txt | 1 + codeforces/UltraFastMathmatician/main_output3.txt | 1 + 11 files changed, 27 insertions(+) create mode 100644 codeforces/UltraFastMathmatician/inp create mode 100755 codeforces/UltraFastMathmatician/main create mode 100644 codeforces/UltraFastMathmatician/main.cpp create mode 100644 codeforces/UltraFastMathmatician/main_input0.txt create mode 100644 codeforces/UltraFastMathmatician/main_input1.txt create mode 100644 codeforces/UltraFastMathmatician/main_input2.txt create mode 100644 codeforces/UltraFastMathmatician/main_input3.txt create mode 100644 codeforces/UltraFastMathmatician/main_output0.txt create mode 100644 codeforces/UltraFastMathmatician/main_output1.txt create mode 100644 codeforces/UltraFastMathmatician/main_output2.txt create mode 100644 codeforces/UltraFastMathmatician/main_output3.txt (limited to 'codeforces/UltraFastMathmatician') diff --git a/codeforces/UltraFastMathmatician/inp b/codeforces/UltraFastMathmatician/inp new file mode 100644 index 0000000..e69de29 diff --git a/codeforces/UltraFastMathmatician/main b/codeforces/UltraFastMathmatician/main new file mode 100755 index 0000000..9553c2a Binary files /dev/null and b/codeforces/UltraFastMathmatician/main differ diff --git a/codeforces/UltraFastMathmatician/main.cpp b/codeforces/UltraFastMathmatician/main.cpp new file mode 100644 index 0000000..83ef653 --- /dev/null +++ b/codeforces/UltraFastMathmatician/main.cpp @@ -0,0 +1,15 @@ +#include + +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/codeforces/UltraFastMathmatician/main_input0.txt b/codeforces/UltraFastMathmatician/main_input0.txt new file mode 100644 index 0000000..4443be3 --- /dev/null +++ b/codeforces/UltraFastMathmatician/main_input0.txt @@ -0,0 +1,2 @@ +1010100 +0100101 diff --git a/codeforces/UltraFastMathmatician/main_input1.txt b/codeforces/UltraFastMathmatician/main_input1.txt new file mode 100644 index 0000000..8156dd5 --- /dev/null +++ b/codeforces/UltraFastMathmatician/main_input1.txt @@ -0,0 +1,2 @@ +000 +111 diff --git a/codeforces/UltraFastMathmatician/main_input2.txt b/codeforces/UltraFastMathmatician/main_input2.txt new file mode 100644 index 0000000..e530a3e --- /dev/null +++ b/codeforces/UltraFastMathmatician/main_input2.txt @@ -0,0 +1,2 @@ +1110 +1010 diff --git a/codeforces/UltraFastMathmatician/main_input3.txt b/codeforces/UltraFastMathmatician/main_input3.txt new file mode 100644 index 0000000..bd9a857 --- /dev/null +++ b/codeforces/UltraFastMathmatician/main_input3.txt @@ -0,0 +1,2 @@ +01110 +01100 diff --git a/codeforces/UltraFastMathmatician/main_output0.txt b/codeforces/UltraFastMathmatician/main_output0.txt new file mode 100644 index 0000000..a5e2249 --- /dev/null +++ b/codeforces/UltraFastMathmatician/main_output0.txt @@ -0,0 +1 @@ +1110001 diff --git a/codeforces/UltraFastMathmatician/main_output1.txt b/codeforces/UltraFastMathmatician/main_output1.txt new file mode 100644 index 0000000..58c9bdf --- /dev/null +++ b/codeforces/UltraFastMathmatician/main_output1.txt @@ -0,0 +1 @@ +111 diff --git a/codeforces/UltraFastMathmatician/main_output2.txt b/codeforces/UltraFastMathmatician/main_output2.txt new file mode 100644 index 0000000..e199843 --- /dev/null +++ b/codeforces/UltraFastMathmatician/main_output2.txt @@ -0,0 +1 @@ +0100 diff --git a/codeforces/UltraFastMathmatician/main_output3.txt b/codeforces/UltraFastMathmatician/main_output3.txt new file mode 100644 index 0000000..f7194c0 --- /dev/null +++ b/codeforces/UltraFastMathmatician/main_output3.txt @@ -0,0 +1 @@ +00010 -- cgit v1.2.3