Submission #1064650

#TimeUsernameProblemLanguageResultExecution timeMemory
1064650vjudge1Make them Meet (EGOI24_makethemmeet)C++17
0 / 100
1 ms348 KiB
#include <bits/stdc++.h>
using namespace std;
#define int long long
 
 signed main(){
    int n, m; cin >> n >> m;
    for (int i = 0; i < m; i++){
        int a, b; cin >> a >> b;
    }
    cout << 10000 << endl;
    for (int k = 0; k < 100; k++){
        for (int i = 0; i < n; i++){
            if (i == n - 1){
                cout << n - 2 << ' ';
            }
            for (int j = 0; j < n; j++){
                if (i == j){
                    if (i == n - 1) break;
                    else cout << j << ' ' << j << ' ';
                    j++;
                }else cout << j << ' ';
            }
            cout << endl;
        }
        cout << endl;
    }
    
    
    
    
 }




#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...