답안 #2295

# 제출 시각 아이디 문제 언어 결과 실행 시간 메모리
2295 2013-07-21T01:45:18 Z 6590f1 생일수 I (GA4_birthday1) C++
0 / 100
68 ms 884 KB
#include<stdio.h>
int main()
{
    int n,a=0,b=0,c=0,k,i,j,t;
    scanf("%d",&t);
    for(i=1;i<=t;i++){
        a=0;b=0;c=0;
        scanf("%d",&n);
        a=n/3;
        k=n%3;
        if(k==1 && a>=3){a=a-3;b=b+2;k=0;}
        if(k==2){
            if(a>=2){c++;a=a-2;k=0;}
            else if(a>=1){b++;k=0;a--;}
        }
        if(a>=8){c=c+(a/8)*3;a=a%8;}
        if(a>=5){b=b+(a/5)*3;a=a%5;}
        if(a>0 && b>0){
            if(a>=b){c=c+b;a=a-b;b=0;}
            if(a<b){c=c+a;b=b-a;a=0;}
        }
        if(k==0){
            for(j=1;j<=a;j++)printf("3");
            for(j=1;j<=b;j++)printf("5");
            for(j=1;j<=c;j++)printf("8");
        }
        else printf("-1");
    }
    return 0;
}
# 결과 실행 시간 메모리 Grader output
1 Incorrect 0 ms 884 KB Output isn't 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 68 ms 884 KB Output isn't correct
2 Halted 0 ms 0 KB -