# | Time | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
1168689 | mnbvcxz123 | Hop (COCI21_hop) | C++20 | 0 ms | 0 KiB |
#include <bits/stdc++.h>
using namespace std;
int main(){
int n; cin >> n;
for (int x = 1; x < n; x++){
for (int y = 0; y < x; y++) cout << rand() % 3 + 1 << ' ';
cout << '\n';
}
}
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |