| # | Time | Username | Problem | Language | Result | Execution time | Memory |
|---|---|---|---|---|---|---|---|
| 1356659 | yyc000123 | Make them Meet (EGOI24_makethemmeet) | C++20 | 0 ms | 344 KiB |
#include<bits/stdc++.h>
using namespace std ;
const int N = 105 ;
int n , m ;
int main(){
ios::sync_with_stdio(0),cin.tie(0),cout.tie(0) ;
cin >> n >> m ;
cout << n << '\n' ;
for(int i=1 ; i<n ; i++){
for(int j=0 ; j<n ; j++){
if(j==0 || j==i) cout << "0 " ;
else cout << "1 " ;
}
cout << '\n' ;
}
for(int i=0 ; i<n ; i++) cout << "0 " ;
cout << '\n' ;
return 0 ;
}| # | Result | Execution time | Memory | Grader output |
|---|---|---|---|---|
| Fetching results... | ||||
| # | Result | Execution time | Memory | Grader output |
|---|---|---|---|---|
| Fetching results... | ||||
| # | Result | Execution time | Memory | Grader output |
|---|---|---|---|---|
| Fetching results... | ||||
| # | Result | Execution time | Memory | Grader output |
|---|---|---|---|---|
| Fetching results... | ||||
| # | Result | Execution time | Memory | Grader output |
|---|---|---|---|---|
| Fetching results... | ||||
