#include <bits/stdc++.h>
using namespace std;
int main(){
int n , m , k ;
cin >> n >> m >> k ;
int c[n] ;
for (int i = 0 ; i < n ; i ++ ) {
cin >> c[i] ;
}
for ( int i = 0 ; i < k ; i ++ ) {
int a , b ;
cin >> a >> b ;
if ( a == b ) cout << "DA" ;
else if ( c[b] == a ) cout << "DA" ;
else cout << "NE" ;
cout << endl ;
}
return 0;
}
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
776 ms |
1816 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
0 ms |
204 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
0 ms |
204 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
776 ms |
1816 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |