#include<cstdio>
int main()
{
int i,j,n;
scanf("%d",&n);
for(i=0;i*3<=n;i++)if((n-i*3)%8==0)break;
if(i*3<=n)
{
for(j=0;j<i;j++)printf("3");
for(j=0;j<(n-i*3)/8;j++)printf("8");
}
else puts("-1");
}
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
0 ms |
1088 KB |
Output isn't correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
0 ms |
1088 KB |
Output isn't correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
0 ms |
1088 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
0 ms |
1088 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |