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