답안 #499524

# 제출 시각 아이디 문제 언어 결과 실행 시간 메모리
499524 2021-12-28T14:44:07 Z Abito Kutije (COCI21_kutije) C++11
0 / 70
796 ms 1748 KB
#include <bits/stdc++.h>

using namespace std;

int main()
{
    int n,m,q;
    cin>>n>>m>>q;
    pair<int,int> x[n+1];
    for (int i=1;i<=n;i++)
    {
        x[i].first=i;
    }
    int l;
    for (int j=0;j<m;j++){
    for (int i=1;i<=n;i++)
    {
        cin>>l;
        x[l].second=i;
    }}
    int a,b;
    while (q--)
    {
        cin>>a>>b;
        if (a==b)
            cout<<"DA"<<endl;
        else if (x[a].second==b)
        {
            cout<<"DA"<<endl;
        }
        else
            cout<<"NE"<<endl;
    }
    return 0;
}
# 결과 실행 시간 메모리 Grader output
1 Incorrect 796 ms 1748 KB Output isn't correct
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 2 ms 204 KB Output isn't correct
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 2 ms 204 KB Output isn't correct
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 796 ms 1748 KB Output isn't correct
2 Halted 0 ms 0 KB -