#include <bits/stdc++.h>
using namespace std;
int main()
{
int a,b;
cin>>a>>b;
for (int ct=0;ct<=b/2;ct++)
{
string s;
int val=ct;
for (int j=0;j<11;j++)
{
int x=val%3;
s+=char('a'+x);
val/=3;
}
cout<<s<<' ';
}
cout<<endl;
return 0;
}
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
0 ms |
348 KB |
Output isn't correct |
2 |
Correct |
0 ms |
348 KB |
Output is correct |
3 |
Correct |
0 ms |
348 KB |
Output is correct |
4 |
Correct |
0 ms |
348 KB |
Output is correct |
5 |
Incorrect |
0 ms |
348 KB |
Output isn't correct |
6 |
Correct |
1 ms |
348 KB |
Output is correct |
7 |
Correct |
3 ms |
860 KB |
Output is correct |
8 |
Incorrect |
3 ms |
856 KB |
Output isn't correct |
9 |
Incorrect |
3 ms |
860 KB |
Output isn't correct |
10 |
Correct |
3 ms |
860 KB |
Output is correct |