답안 #499494

# 제출 시각 아이디 문제 언어 결과 실행 시간 메모리
499494 2021-12-28T14:04:23 Z Abito Kutije (COCI21_kutije) C++14
0 / 70
954 ms 17400 KB
#include <bits/stdc++.h>

using namespace std;

int main()
{
    int n,m,q;
    cin>>n>>m>>q;
    map<int,pair<int,int>> x;
    for (int i=1;i<=n;i++)
    {
        x[i].first=i;
    }
    int c;
    for (int i=1;i<=n;i++)
    {
        cin>>c;
        x[i].second=c;
    }
    int a,b;
    string ans[q];
    while (q--)
    {
        cin>>a>>b;
        if (x[a].first==b || x[a].second==b)
        {
            cout<<"DA"<<endl;
        }
        else
            cout<<"NE"<<endl;
    }
    return 0;
}
# 결과 실행 시간 메모리 Grader output
1 Incorrect 954 ms 17400 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 954 ms 17400 KB Output isn't correct
2 Halted 0 ms 0 KB -