Submission #588027

#TimeUsernameProblemLanguageResultExecution timeMemory
588027jmyszka2007Coins (LMIO19_monetos)C++17
8.38 / 100
11 ms484 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; i++) { for(int j = 1; j <= n / 2; j++) { cout << "0 "; } for(int j = 1; j <= n / 2; j++) { cout << "1 "; } cout << '\n'; } }
#Verdict Execution timeMemoryGrader output
Fetching results...