fork download
  1. #include <iostream>
  2. using namespace std;
  3.  
  4. void output( int a[6]){
  5. for(int i=0; i<6; i++){
  6. cout<< a[i] <<" ";
  7. }
  8. }
  9.  
  10. void input( int a[6][6]){
  11. for(int i=0; i<6; i++){
  12. for(int j=0; j<6; j++){
  13. cin >> a[i][j];
  14. }
  15. }
  16. }
  17.  
  18. int EQ(int a[6][6], int b[6][6], int c[6]){
  19. for(int i=0; i<6; i++){
  20. int t=0, g=0;
  21. for(int j=0; j<6; j++){
  22. if( a[i][j] < 0 ){
  23. t++;
  24. }
  25. }
  26. for(int j=0; j<6; j++){
  27. if( b[i][j] < 0 ){
  28. g++;
  29. }
  30. }
  31. c[i]= t == g? 1 : 0;
  32. }
  33. }
  34.  
  35. int main() {
  36. int a[6][6], b[6][6];
  37. int c[6];
  38. input(a);
  39. input(b);
  40. EQ(a, b, c);
  41. output(c);
  42. return 0;
  43. }
Success #stdin #stdout 0s 3344KB
stdin
 0 2 2 3 4 4
1 3 3 -4 5 5
2 4 -4 5 6 6
3 -5 5 6 7 -7
4 6 -6 -7 8 8
5 -7 7 -8 9 -9

0 2 2 3 4 4
-1 3 1 4 3 5
-2 4 0 5 2 6
-3 5 -1 6 1 7
-4 6 -2 7 0 8
-5 7 -3 8 -1 9
stdout
1 1 1 1 1 1