답안 #428217

# 제출 시각 아이디 문제 언어 결과 실행 시간 메모리
428217 2021-06-15T08:53:28 Z 장태환(#7562) Posters on the wall (CPSPC17_posters) C++17
0 / 100
11 ms 1100 KB
#include <iostream>
using namespace std;
int cou[501][501];
int main()
{
    int a,b,N,M,e;
    cin >> a >> b >> N >> M >> e;
    int i;
    for(i=0;i<N;i++)
    {
        int a,b,c,d;
        cin >> a >> b >> c >> d;
        if(a>c)
            swap(a,c);
        if(b>d)
            swap(b,d);
        int j,k;
        for(j=a;j<c;j++)
        {
            for(k=b;k<d;k++)
                cou[j][k]=1;
        }
    }
    for(i=0;i<N;i++)
    {
        int a,b,c,d,e;
        cin >> a >> b >> c >> d>>e;
        if(a>c)
            swap(a,c);
        if(b>d)
            swap(b,d);
        int j,k;
        int ans=0;
        for(j=a;j<c;j++)
        {
            for(k=b;k<d;k++)
                ans+=cou[j][k];
        }
        cout << ans<<'\n';
    }
}
# 결과 실행 시간 메모리 Grader output
1 Incorrect 11 ms 1100 KB Output isn't correct
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 11 ms 1100 KB Output isn't correct
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 11 ms 1100 KB Output isn't correct
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 11 ms 1100 KB Output isn't correct
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 11 ms 1100 KB Output isn't correct
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Runtime error 1 ms 332 KB Execution killed with signal 11
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Runtime error 1 ms 332 KB Execution killed with signal 11
2 Halted 0 ms 0 KB -