#include<stdio.h>
int main()
{
int n, i, t, j, a, b, c, k, tt, l, z;
scanf("%d", &n);
for(i=1;i<=n;i++){
scanf("%d", &t);
a = t/8;
z = 0;
for(j=a;j>=0;j--){
b = (t-(j*8))/5;
for(k=b;k>=0;k--){
if((t-(j*8)-(k*5))%3==0){
for(l=1;l<=(t-(j*8)-(k*5))/3;l++) printf("3");
for(l=1;l<=k;l++) printf("5");
for(l=1;l<=j;l++) printf("8");
printf("\n");
z = 1;
break;
}
}
if(z==1) break;
}
if(z==0) printf("-1\n");
}
return 0;
}
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
0 ms |
884 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
0 ms |
884 KB |
Output isn't correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
0 ms |
884 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
87 ms |
884 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |