Submission #1058577

# Submission time Handle Problem Language Result Execution time Memory
1058577 2024-08-14T11:10:59 Z Szymon_Pilipczuk Make them Meet (EGOI24_makethemmeet) C++17
0 / 100
1 ms 600 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<<n<<"\n";
    for(int i = 1;i<n;i++)
    {
        for(int j = 0;j<n;j++)
        {
            if(j == i)
            {
                cout<<0<<" ";
            }
            else
            {
                cout<<j<<" ";
            }
        }
        cout<<"\n";
    }
    for(int i = 0;i<n;i++)
    {
        cout<<0<<" ";
    }
}
# Verdict Execution time Memory Grader output
1 Correct 1 ms 344 KB Output is correct
2 Incorrect 0 ms 348 KB If people start at 0 and 2, then they can avoid each other
3 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Correct 1 ms 348 KB Output is correct
2 Incorrect 0 ms 348 KB If people start at 0 and 2, then they can avoid each other
3 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Correct 0 ms 600 KB Output is correct
2 Incorrect 0 ms 348 KB If people start at 0 and 2, then they can avoid each other
3 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Correct 1 ms 344 KB Output is correct
2 Incorrect 0 ms 348 KB If people start at 0 and 2, then they can avoid each other
3 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Correct 1 ms 344 KB Output is correct
2 Incorrect 0 ms 348 KB If people start at 0 and 2, then they can avoid each other
3 Halted 0 ms 0 KB -