Submission #1914250


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,a,b;
    scanf("%d%d",&a,&b);
    printf("%d\n",min(zt(a,b),min(zt(10+a,b),zt(a,10+b))));
    return 0;
}

Submission Info

Submission Time
Task B - 錠
User physics0523
Language C (GCC 5.4.1)
Score 100
Code Size 2835 Byte
Status AC
Exec Time 1 ms
Memory 128 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:43:5: warning: ignoring return value of ‘scanf’, declared with attribute warn_unused_result [-Wunused-result]
     scanf("%d%d",&a,&b);
     ^

Judge Result

Set Name all
Score / Max Score 100 / 100
Status
AC × 90
Set Name Test Cases
all 0_1.txt, 0_2.txt, 0_3.txt, 0_4.txt, 0_5.txt, 0_6.txt, 0_7.txt, 0_8.txt, 0_9.txt, 1_0.txt, 1_2.txt, 1_3.txt, 1_4.txt, 1_5.txt, 1_6.txt, 1_7.txt, 1_8.txt, 1_9.txt, 2_0.txt, 2_1.txt, 2_3.txt, 2_4.txt, 2_5.txt, 2_6.txt, 2_7.txt, 2_8.txt, 2_9.txt, 3_0.txt, 3_1.txt, 3_2.txt, 3_4.txt, 3_5.txt, 3_6.txt, 3_7.txt, 3_8.txt, 3_9.txt, 4_0.txt, 4_1.txt, 4_2.txt, 4_3.txt, 4_5.txt, 4_6.txt, 4_7.txt, 4_8.txt, 4_9.txt, 5_0.txt, 5_1.txt, 5_2.txt, 5_3.txt, 5_4.txt, 5_6.txt, 5_7.txt, 5_8.txt, 5_9.txt, 6_0.txt, 6_1.txt, 6_2.txt, 6_3.txt, 6_4.txt, 6_5.txt, 6_7.txt, 6_8.txt, 6_9.txt, 7_0.txt, 7_1.txt, 7_2.txt, 7_3.txt, 7_4.txt, 7_5.txt, 7_6.txt, 7_8.txt, 7_9.txt, 8_0.txt, 8_1.txt, 8_2.txt, 8_3.txt, 8_4.txt, 8_5.txt, 8_6.txt, 8_7.txt, 8_9.txt, 9_0.txt, 9_1.txt, 9_2.txt, 9_3.txt, 9_4.txt, 9_5.txt, 9_6.txt, 9_7.txt, 9_8.txt
Case Name Status Exec Time Memory
0_1.txt AC 0 ms 128 KB
0_2.txt AC 1 ms 128 KB
0_3.txt AC 1 ms 128 KB
0_4.txt AC 1 ms 128 KB
0_5.txt AC 1 ms 128 KB
0_6.txt AC 1 ms 128 KB
0_7.txt AC 1 ms 128 KB
0_8.txt AC 1 ms 128 KB
0_9.txt AC 1 ms 128 KB
1_0.txt AC 1 ms 128 KB
1_2.txt AC 1 ms 128 KB
1_3.txt AC 1 ms 128 KB
1_4.txt AC 1 ms 128 KB
1_5.txt AC 1 ms 128 KB
1_6.txt AC 1 ms 128 KB
1_7.txt AC 1 ms 128 KB
1_8.txt AC 1 ms 128 KB
1_9.txt AC 1 ms 128 KB
2_0.txt AC 1 ms 128 KB
2_1.txt AC 1 ms 128 KB
2_3.txt AC 1 ms 128 KB
2_4.txt AC 1 ms 128 KB
2_5.txt AC 1 ms 128 KB
2_6.txt AC 1 ms 128 KB
2_7.txt AC 1 ms 128 KB
2_8.txt AC 1 ms 128 KB
2_9.txt AC 1 ms 128 KB
3_0.txt AC 1 ms 128 KB
3_1.txt AC 1 ms 128 KB
3_2.txt AC 1 ms 128 KB
3_4.txt AC 1 ms 128 KB
3_5.txt AC 1 ms 128 KB
3_6.txt AC 1 ms 128 KB
3_7.txt AC 1 ms 128 KB
3_8.txt AC 1 ms 128 KB
3_9.txt AC 1 ms 128 KB
4_0.txt AC 1 ms 128 KB
4_1.txt AC 1 ms 128 KB
4_2.txt AC 1 ms 128 KB
4_3.txt AC 1 ms 128 KB
4_5.txt AC 0 ms 128 KB
4_6.txt AC 1 ms 128 KB
4_7.txt AC 1 ms 128 KB
4_8.txt AC 0 ms 128 KB
4_9.txt AC 0 ms 128 KB
5_0.txt AC 0 ms 128 KB
5_1.txt AC 0 ms 128 KB
5_2.txt AC 1 ms 128 KB
5_3.txt AC 1 ms 128 KB
5_4.txt AC 0 ms 128 KB
5_6.txt AC 1 ms 128 KB
5_7.txt AC 1 ms 128 KB
5_8.txt AC 1 ms 128 KB
5_9.txt AC 1 ms 128 KB
6_0.txt AC 0 ms 128 KB
6_1.txt AC 1 ms 128 KB
6_2.txt AC 0 ms 128 KB
6_3.txt AC 0 ms 128 KB
6_4.txt AC 1 ms 128 KB
6_5.txt AC 1 ms 128 KB
6_7.txt AC 1 ms 128 KB
6_8.txt AC 1 ms 128 KB
6_9.txt AC 1 ms 128 KB
7_0.txt AC 0 ms 128 KB
7_1.txt AC 0 ms 128 KB
7_2.txt AC 1 ms 128 KB
7_3.txt AC 1 ms 128 KB
7_4.txt AC 1 ms 128 KB
7_5.txt AC 0 ms 128 KB
7_6.txt AC 0 ms 128 KB
7_8.txt AC 1 ms 128 KB
7_9.txt AC 1 ms 128 KB
8_0.txt AC 1 ms 128 KB
8_1.txt AC 0 ms 128 KB
8_2.txt AC 0 ms 128 KB
8_3.txt AC 1 ms 128 KB
8_4.txt AC 1 ms 128 KB
8_5.txt AC 1 ms 128 KB
8_6.txt AC 0 ms 128 KB
8_7.txt AC 0 ms 128 KB
8_9.txt AC 1 ms 128 KB
9_0.txt AC 1 ms 128 KB
9_1.txt AC 1 ms 128 KB
9_2.txt AC 1 ms 128 KB
9_3.txt AC 1 ms 128 KB
9_4.txt AC 0 ms 128 KB
9_5.txt AC 1 ms 128 KB
9_6.txt AC 0 ms 128 KB
9_7.txt AC 1 ms 128 KB
9_8.txt AC 1 ms 128 KB