#include <bits/stdc++.h>
using namespace std;
int main(){
int n , m , q ; cin >> n >> m >> q ;
int a[n+4][m+3] ;
for (int i = 1 ; i <= n ; i ++ ) {
for (int j = 1 ; j <= m ; j ++ ) cin >> a[i][j] ;
}
while (q--) {
int x , y ;
cin >> x >> y ;
if ( x == y ) cout << "DA" ;
else if ( a[y][m] == x ) cout << "DA" ;
else cout << "NE" ;
if ( q > 0 ) cout << endl ;
}
return 0;
}
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Incorrect |
772 ms |
1792 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Incorrect |
2 ms |
332 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Incorrect |
2 ms |
332 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Incorrect |
772 ms |
1792 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |