Submission #147025

#TimeUsernameProblemLanguageResultExecution timeMemory
147025lovro_nidogon1Prosjecni (COCI16_prosjecni)C++14
120 / 120
3 ms380 KiB
#include<bits/stdc++.h> using namespace std; int main() { int n, x, y, z, by; cin >> n; if(n == 2) { cout << -1; return 0; } if(n%2 == 0) { x = 0; by = 0; for(int i = 0; i < n; i++) { y = 0; if(i == n - 2) { z = x + 1; } if(i == n - 1) { x = (z * n) - by - 1; } by = by + x + 1; for(int j = 0; j < n - 1; j++) { x++; y = y + x; cout << x << " "; } cout << (x * n) - y << '\n'; x = (x * n) - y; } } else { for(int i = 0; i < n; i++) { for(int j = 0; j < n; j++) { x++; cout << x << " "; } cout << endl; } } }

Compilation message (stderr)

prosjecni.cpp: In function 'int main()':
prosjecni.cpp:4:9: warning: 'x' may be used uninitialized in this function [-Wmaybe-uninitialized]
  int n, x, y, z, by;
         ^
prosjecni.cpp:20:12: warning: 'z' may be used uninitialized in this function [-Wmaybe-uninitialized]
     x = (z * n) - by - 1;
         ~~~^~~~
#Verdict Execution timeMemoryGrader output
Fetching results...