| # | Time | Username | Problem | Language | Result | Execution time | Memory |
|---|---|---|---|---|---|---|---|
| 1351358 | cholpon1 | Monster-Go (EGOI25_monstergo) | C++20 | 0 ms | 344 KiB |
#include <bits/stdc++.h>
using namespace std;
int main() {
cin.tie(0)->sync_with_stdio(0);
int n;
cin >> n;
if (n == 2) {
cout << "0 1 2 3 4 5 6 7 8 9 10 11 38 39 40 41 42 43 44 45 46 47 48 49\n";
} else {
for (int i = 0; i <= 49; i++) {
cout << i << " ";
}
cout << "\n";
}
return 0;
}| # | Verdict | Execution time | Memory | Grader output |
|---|---|---|---|---|
| Fetching results... | ||||
