aboutsummaryrefslogtreecommitdiff
path: root/TheThirdThreeNumberProblem
diff options
context:
space:
mode:
authoromagdy7 <omar.professional8777@gmail.com>2022-11-05 01:41:11 +0200
committeromagdy7 <omar.professional8777@gmail.com>2022-11-05 01:41:11 +0200
commit7f856c7ff080b8d455b9ed16c2e57dd862c3879d (patch)
treec2baf90f98c91567358003d6b97a4afed7fa9b42 /TheThirdThreeNumberProblem
parentc52b36c6a37fdb1d1de146d3939cb42e2c691f44 (diff)
downloadcompetitive-programming-7f856c7ff080b8d455b9ed16c2e57dd862c3879d.tar.xz
competitive-programming-7f856c7ff080b8d455b9ed16c2e57dd862c3879d.zip
moved some file
Diffstat (limited to 'TheThirdThreeNumberProblem')
-rwxr-xr-xTheThirdThreeNumberProblem/mainbin22680 -> 0 bytes
-rw-r--r--TheThirdThreeNumberProblem/main.cpp20
-rw-r--r--TheThirdThreeNumberProblem/main_input0.txt6
-rw-r--r--TheThirdThreeNumberProblem/main_output0.txt5
4 files changed, 0 insertions, 31 deletions
diff --git a/TheThirdThreeNumberProblem/main b/TheThirdThreeNumberProblem/main
deleted file mode 100755
index 4d2eb59..0000000
--- a/TheThirdThreeNumberProblem/main
+++ /dev/null
Binary files differ
diff --git a/TheThirdThreeNumberProblem/main.cpp b/TheThirdThreeNumberProblem/main.cpp
deleted file mode 100644
index 656b3df..0000000
--- a/TheThirdThreeNumberProblem/main.cpp
+++ /dev/null
@@ -1,20 +0,0 @@
-#include<bits/stdc++.h>
-
-using namespace std;
-
-int main () {
- ios_base::sync_with_stdio(false);
- cin.tie(NULL);
- int tt;
- cin >> tt;
- while(tt--){
- int n;
- cin >> n;
- if(n % 2) {
- cout << -1 << endl;
- } else {
- cout << "0" << " " << n / 2 << " " << n / 2 << endl;
- }
-
- }
-}
diff --git a/TheThirdThreeNumberProblem/main_input0.txt b/TheThirdThreeNumberProblem/main_input0.txt
deleted file mode 100644
index 8cc752e..0000000
--- a/TheThirdThreeNumberProblem/main_input0.txt
+++ /dev/null
@@ -1,6 +0,0 @@
-5
-4
-1
-12
-2046
-194723326
diff --git a/TheThirdThreeNumberProblem/main_output0.txt b/TheThirdThreeNumberProblem/main_output0.txt
deleted file mode 100644
index 35b1415..0000000
--- a/TheThirdThreeNumberProblem/main_output0.txt
+++ /dev/null
@@ -1,5 +0,0 @@
-3 3 1
--1
-2 4 6
-69 420 666
-12345678 87654321 100000000