#include<bits/stdc++.h>
using namespace std;
char tab[105];
int main()
{
ios_base::sync_with_stdio(0);
cin.tie(0);
tab[3] = 'a';
tab[4] = 'c';
tab[5] = 'z';
tab[6] = 'w';
int a;
cin>>a;
string d;
cin>>d;
int licz = 0;
for(auto x:d)
licz += x - '0';
if(licz > a*6 || licz < a*3)
cout<<"NIE";
else
{
licz -= a*3;
while(a--)
{
if(licz <= 3)
{
cout<<tab[licz+3];
licz = 0;
}
else
{
cout<<tab[6];
licz-=3;
}
}
}
return 0;
}
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 | #include<bits/stdc++.h> using namespace std; char tab[105]; int main() { ios_base::sync_with_stdio(0); cin.tie(0); tab[3] = 'a'; tab[4] = 'c'; tab[5] = 'z'; tab[6] = 'w'; int a; cin>>a; string d; cin>>d; int licz = 0; for(auto x:d) licz += x - '0'; if(licz > a*6 || licz < a*3) cout<<"NIE"; else { licz -= a*3; while(a--) { if(licz <= 3) { cout<<tab[licz+3]; licz = 0; } else { cout<<tab[6]; licz-=3; } } } return 0; } |
English