답안 #1058583

# 제출 시각 아이디 문제 언어 결과 실행 시간 메모리
1058583 2024-08-14T11:14:31 Z Szymon_Pilipczuk Make them Meet (EGOI24_makethemmeet) C++17
0 / 100
1 ms 348 KB
#include <iostream>
using namespace std;
int main()
{
    int n,m;
    cin>>n>>m;
    int a,b;
    for(int i =0;i<m;i++)
    {
        cin>>a>>b;
    }
    cout<<2*n-1<<"\n";
    for(int i = 1;i<n;i++)
    {
        for(int j = 0;j<n;j++)
        {
            for(int q = 0;q<2;q++)
            {
                if(j == i)
                {
                    cout<<0<<" ";
                }
                else
                {
                    cout<<j<<" ";
                }
            }
            
        }
        cout<<"\n";
    }
    for(int i = 0;i<n;i++)
    {
        cout<<0<<" ";
    }
}
# 결과 실행 시간 메모리 Grader output
1 Correct 0 ms 344 KB Output is correct
2 Correct 0 ms 344 KB Output is correct
3 Correct 0 ms 348 KB Output is correct
4 Incorrect 1 ms 348 KB If people start at 0 and 2, then they can avoid each other
5 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Correct 0 ms 348 KB Output is correct
2 Correct 0 ms 348 KB Output is correct
3 Incorrect 0 ms 348 KB If people start at 0 and 1, then they can avoid each other
4 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Correct 0 ms 348 KB Output is correct
2 Correct 0 ms 348 KB Output is correct
3 Incorrect 0 ms 348 KB If people start at 0 and 1, then they can avoid each other
4 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Correct 0 ms 344 KB Output is correct
2 Correct 0 ms 344 KB Output is correct
3 Correct 0 ms 348 KB Output is correct
4 Incorrect 1 ms 348 KB If people start at 0 and 2, then they can avoid each other
5 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Correct 0 ms 344 KB Output is correct
2 Correct 0 ms 344 KB Output is correct
3 Correct 0 ms 348 KB Output is correct
4 Incorrect 1 ms 348 KB If people start at 0 and 2, then they can avoid each other
5 Halted 0 ms 0 KB -