Submission #1360428

#TimeUsernameProblemLanguageResultExecution timeMemory
1360428kawhietMonster-Go (EGOI25_monstergo)C++20
8 / 100
1 ms344 KiB
#include <bits/stdc++.h>
using namespace std;

#ifdef LOCAL
#include "debug.h"
#else
#define dbg(...) 47
#endif

int main() {
    ios::sync_with_stdio(false);
    cin.tie(nullptr);
    int n;
    cin >> n;
    int x = 0;
    for (int i = 0; i < n; i++) {
        for (int j = 0; j < 12; j++) {
            cout << x++ << ' ';
        }
        cout << '\n';
    }
    return 0;
}
#Result Execution timeMemoryGrader output
Fetching results...