Submission #1943129


Source Code Expand

//set many funcs template
#include<stdio.h>
#include<string.h>
#include<stdlib.h>
#include<stdbool.h>
#define inf 1072114514
#define llinf 4154118101919364364
#define mod 1000000007
#define pi 3.1415926535897932384

int max(int a,int b){if(a>b){return a;}return b;}
int min(int a,int b){if(a<b){return a;}return b;}
int zt(int a,int b){return max(a,b)-min(a,b);}
int round(int a,int b){if((a%b)*2 >= b){return (a/b)+1;}return a/b;}
int ceil(int a,int b){if(a%b==0){return a/b;}return (a/b)+1;}
int gcd(int a,int b){int c;while(b!=0){c=a%b;a=b;b=c;}return a;}
int lcm(int a,int b){int c=gcd(a,b);a/=c;return a*b;}
int nCr(int a,int b){int i,r=1;for(i=1;i<=b;i++){r*=(a+1-i);r/=i;}return r;}
int fact(int a){int i,r=1;for(i=1;i<=a;i++){r*=i;}return r;}
int pow(int a,int b){int i,r=1;for(i=1;i<=b;i++){r*=a;}return r;}
long long llmax(long long a,long long b){if(a>b){return a;}return b;}
long long llmin(long long a,long long b){if(a<b){return a;}return b;}
long long llzt(long long a,long long b){return llmax(a,b)-llmin(a,b);}
long long llround(long long a,long long b){if((a%b)*2 >= b){return (a/b)+1;}return a/b;}
long long llceil(long long a,long long b){if(a%b==0){return a/b;}return (a/b)+1;}
long long llgcd(long long a,long long b){long long c;while(b!=0){c=a%b;a=b;b=c;}return a;}
long long lllcm(long long a,long long b){long long c=llgcd(a,b);a/=c;return a*b;}
long long llnCr(long long a,long long b){long long i,r=1;for(i=1;i<=b;i++){r*=(a+1-i);r/=i;}return r;}
long long llfact(long long a){long long i,r=1;for(i=1;i<=a;i++){r*=i;}return r;}
long long llpow(long long a,long long b){long long i,r=1;for(i=1;i<=b;i++){r*=a;}return r;}
double dbmax(double a,double b){if(a>b){return a;}return b;}
double dbmin(double a,double b){if(a<b){return a;}return b;}
double dbzt(double a,double b){return dbmax(a,b)-dbmin(a,b);}
int sortfncsj(const void *a,const void *b){if(*(int *)a>*(int *)b){return 1;}if(*(int *)a==*(int *)b){return 0;}return -1;}
int sortfnckj(const void *a,const void *b){if(*(int *)a<*(int *)b){return 1;}if(*(int *)a==*(int *)b){return 0;}return -1;}
int llsortfncsj(const void *a,const void *b){if(*(long long *)a>*(long long *)b){return 1;}if(*(long long *)a==*(long long *)b){return 0;}return -1;}
int llsortfnckj(const void *a,const void *b){if(*(long long *)a<*(long long *)b){return 1;}if(*(long long *)a==*(long long *)b){return 0;}return -1;}
int dbsortfncsj(const void *a,const void *b){if(*(double *)a>*(double *)b){return 1;}if(*(double *)a==*(double *)b){return 0;}return -1;}
int dbsortfnckj(const void *a,const void *b){if(*(double *)a<*(double *)b){return 1;}if(*(double *)a==*(double *)b){return 0;}return -1;}

int main(void){
    int i,j,n,m,t,k,a[262144],r=0,l;
    double d;
    char s[262144]="DiscoPresentsDiscoveryChannelProgrammingContest2016";
    scanf("%d",&n);
    //l=strlen(s);
    for(i=1;i<=51;i++){printf("%c",s[i-1]);if(i%n==0){printf("\n");}}
    if(51%n){printf("\n");}
    //printf("%d\n",r);
    return 0;
}

Submission Info

Submission Time
Task A - DISCO presents ディスカバリーチャンネルプログラミングコンテスト 2016
User physics0523
Language C (GCC 5.4.1)
Score 100
Code Size 3024 Byte
Status AC
Exec Time 1 ms
Memory 384 KB

Compile Error

./Main.c:14:5: warning: conflicting types for built-in function ‘round’
 int round(int a,int b){if((a%b)*2 >= b){return (a/b)+1;}return a/b;}
     ^
./Main.c:15:5: warning: conflicting types for built-in function ‘ceil’
 int ceil(int a,int b){if(a%b==0){return a/b;}return (a/b)+1;}
     ^
./Main.c:20:5: warning: conflicting types for built-in function ‘pow’
 int pow(int a,int b){int i,r=1;for(i=1;i<=b;i++){r*=a;}return r;}
     ^
./Main.c:24:11: warning: conflicting types for built-in function ‘llround’
 long long llround(long long a,long long b){if((a%b)*2 >= b){return (a/b)+1;}return a/b;}
           ^
./Main.c: In function ‘main’:
./Main.c:45:5: warning: ignoring return value of ‘scanf’, declared with attribute warn_unused_result [-Wunused-result]
     scanf("%d",&n);
     ^

Judge Result

Set Name Sample All
Score / Max Score 0 / 0 100 / 100
Status
AC × 3
AC × 51
Set Name Test Cases
Sample example_01.txt, example_02.txt, example_03.txt
All example_01.txt, example_02.txt, example_03.txt, test_01.txt, test_02.txt, test_03.txt, test_04.txt, test_05.txt, test_06.txt, test_07.txt, test_08.txt, test_09.txt, test_10.txt, test_11.txt, test_12.txt, test_13.txt, test_14.txt, test_15.txt, test_16.txt, test_18.txt, test_19.txt, test_20.txt, test_21.txt, test_22.txt, test_23.txt, test_24.txt, test_25.txt, test_26.txt, test_27.txt, test_28.txt, test_29.txt, test_30.txt, test_31.txt, test_32.txt, test_33.txt, test_34.txt, test_35.txt, test_36.txt, test_37.txt, test_38.txt, test_39.txt, test_41.txt, test_42.txt, test_43.txt, test_44.txt, test_45.txt, test_46.txt, test_47.txt, test_48.txt, test_49.txt, test_50.txt
Case Name Status Exec Time Memory
example_01.txt AC 1 ms 384 KB
example_02.txt AC 1 ms 384 KB
example_03.txt AC 1 ms 384 KB
test_01.txt AC 1 ms 384 KB
test_02.txt AC 1 ms 384 KB
test_03.txt AC 1 ms 384 KB
test_04.txt AC 1 ms 384 KB
test_05.txt AC 1 ms 384 KB
test_06.txt AC 1 ms 384 KB
test_07.txt AC 1 ms 384 KB
test_08.txt AC 1 ms 384 KB
test_09.txt AC 1 ms 384 KB
test_10.txt AC 1 ms 384 KB
test_11.txt AC 1 ms 384 KB
test_12.txt AC 1 ms 384 KB
test_13.txt AC 1 ms 384 KB
test_14.txt AC 1 ms 384 KB
test_15.txt AC 1 ms 384 KB
test_16.txt AC 1 ms 384 KB
test_18.txt AC 1 ms 384 KB
test_19.txt AC 1 ms 384 KB
test_20.txt AC 1 ms 384 KB
test_21.txt AC 1 ms 384 KB
test_22.txt AC 1 ms 384 KB
test_23.txt AC 1 ms 384 KB
test_24.txt AC 1 ms 384 KB
test_25.txt AC 1 ms 384 KB
test_26.txt AC 1 ms 384 KB
test_27.txt AC 1 ms 384 KB
test_28.txt AC 1 ms 384 KB
test_29.txt AC 1 ms 384 KB
test_30.txt AC 1 ms 384 KB
test_31.txt AC 1 ms 384 KB
test_32.txt AC 1 ms 384 KB
test_33.txt AC 1 ms 384 KB
test_34.txt AC 1 ms 384 KB
test_35.txt AC 1 ms 384 KB
test_36.txt AC 1 ms 384 KB
test_37.txt AC 1 ms 384 KB
test_38.txt AC 1 ms 384 KB
test_39.txt AC 1 ms 384 KB
test_41.txt AC 1 ms 384 KB
test_42.txt AC 1 ms 384 KB
test_43.txt AC 1 ms 384 KB
test_44.txt AC 1 ms 384 KB
test_45.txt AC 1 ms 384 KB
test_46.txt AC 1 ms 384 KB
test_47.txt AC 1 ms 384 KB
test_48.txt AC 1 ms 384 KB
test_49.txt AC 1 ms 384 KB
test_50.txt AC 1 ms 384 KB