# | Time | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
583859 | MilosMilutinovic | Esej (COCI15_esej) | C++14 | 52 ms | 25960 KiB |
This submission is migrated from previous version of oj.uz, which used different machine for grading. This submission may have different result if resubmitted.
/**
* author: wxhtzdy
* created: 26.06.2022 12:23:35
**/
#include <bits/stdc++.h>
using namespace std;
int main() {
ios::sync_with_stdio(false);
cin.tie(0);
int a, b;
cin >> a >> b;
vector<vector<char>> s;
for (char i = 'a'; i <= 'z'; i++) {
for (char j = 'a'; j <= 'z'; j++) {
for (char k = 'a'; k <= 'z'; k++) {
for (char p = 'a'; p <= 'z'; p++) {
s.push_back({i, j, k, p});
}
}
}
}
function<void(vector<char>)> Print = [&](vector<char> c) {
for (int i = 0; i < 5; i++) {
cout << c[i];
}
cout << " ";
};
while (b--) {
Print(s.back());
s.pop_back();
}
return 0;
}
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |