| # | Time | Username | Problem | Language | Result | Execution time | Memory |
|---|---|---|---|---|---|---|---|
| 1355817 | gry3125 | Monster-Go (EGOI25_monstergo) | C++20 | 1 ms | 344 KiB |
#include <bits/stdc++.h>
#define ll long long int
#define pb push_back
#define fi first
#define se second
#define all(v) (v).begin(),(v).end()
using namespace std;
int main() {
int n; cin >> n;
if (n == 1 || n == 2 || n == 3 || n == 4) {
for (int i = 1; i <= n; i++) {
for (int j = 1; j <= 12; j++) {
cout << (i-1)*12+j << " ";
}
cout << "\n";
}
}
return 0;
}| # | Result | Execution time | Memory | Grader output |
|---|---|---|---|---|
| Fetching results... | ||||
