Submission #588022

#TimeUsernameProblemLanguageResultExecution timeMemory
588022jmyszka2007Coins (LMIO19_monetos)C++17
5.34 / 100
12 ms612 KiB
#include <bits/stdc++.h>
using namespace std;
int main() {
	int t, n, k, k1;
	cin >> t >> n >> k >> k1;
	for(int i = 1; i <= n; i++) {
		for(int j = 1; j <= n; j++) {
			char z;
			cin >> z;
		}
	}
	for(int i = 1; i <= n / 2; i++) {
		for(int j = 1; j <= n; j++) {
			cout << "0 ";
		}
		cout << '\n';
	}
	for(int i = 1; i <= n / 2; i++) {
		for(int j = 1; j <= n; j++) {
			cout << "1 ";
		}
		cout << '\n';
	}
}
#Verdict Execution timeMemoryGrader output
Fetching results...