Submission #1048998

#TimeUsernameProblemLanguageResultExecution timeMemory
1048998EntityPlanttMake them Meet (EGOI24_makethemmeet)C++17
0 / 100
0 ms348 KiB
#include <iostream> using namespace std; signed main() { ios::sync_with_stdio(0); cin.tie(0); cout.tie(0); int n; cin >> n; cout << 2 * n; for (int i = 1; i < n; i++) { cout << '\n'; for (int j = 0; j < n; j++) { if (i == j) cout << "0 "; else cout << j << ' '; } } for (int i = 1; i < n; i++) { cout << '\n'; for (int j = 0; j < n; j++) { if (i == j) cout << "0 "; else cout << j << ' '; } } return 0; }
#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...