fork(1) download
  1. #include <iostream>
  2. using namespace std;
  3.  
  4. int main() {
  5. int target;
  6. cin >> target;
  7. int n;
  8. cin >> n;
  9.  
  10. int ara[n][n];
  11.  
  12. for(int i=0; i<n; i++){
  13. for(int j=0; j<n; j++){
  14. cin >> ara[i][j];
  15. }
  16. }
  17.  
  18. for(int j=0; j<n; j++){
  19. int num = 0;
  20. for(int i=0; i<n; i++){
  21. if(ara[i][j] == target)
  22. num = 1;
  23. }
  24. if(num == 1)
  25. cout << "YES" << endl;
  26. else
  27. cout << "NO" << endl;
  28. }
  29.  
  30. return 0;
  31. }
Success #stdin #stdout 0.01s 5284KB
stdin
23
3
23 0 23
21 12 23
11 13 23
stdout
YES
NO
YES