# | Time | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
339951 | MertD014 | Esej (COCI15_esej) | C++17 | 35 ms | 876 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.
#include <bits/stdc++.h>
#define ll long long
using namespace std;
int a,b;
void ff(int x){
x++;
while(x){
printf("%c",'a'+x%10);
x/=10;
}
printf(" ");
}
int main(){
cin>>a>>b;
for(int i=0;i<a;i++) ff(i);
return 0;
}
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |