Submission #1995449


Source Code Expand

#include <stdio.h>
#include <math.h>
int main()
{
	int x, a, b, A, B;
	scanf("%d %d %d",&x,&a,&b);
	A = abs(x - a);
	B = abs(x - b);
		if (B > A)
		printf("A");
	else
		printf("B");
		
	return 0;
}

Submission Info

Submission Time
Task A - Meal Delivery
User vjudge4
Language C (GCC 5.4.1)
Score 100
Code Size 197 Byte
Status AC
Exec Time 1 ms
Memory 128 KB

Compile Error

./Main.c: In function ‘main’:
./Main.c:7:6: warning: implicit declaration of function ‘abs’ [-Wimplicit-function-declaration]
  A = abs(x - a);
      ^
./Main.c:6:2: warning: ignoring return value of ‘scanf’, declared with attribute warn_unused_result [-Wunused-result]
  scanf("%d %d %d",&x,&a,&b);
  ^

Judge Result

Set Name Sample All
Score / Max Score 0 / 0 100 / 100
Status
AC × 2
AC × 10
Set Name Test Cases
Sample sample1.txt, sample2.txt
All sample1.txt, sample2.txt, 1.txt, 2.txt, 3.txt, 4.txt, 5.txt, 6.txt, sample1.txt, sample2.txt
Case Name Status Exec Time Memory
1.txt AC 0 ms 128 KB
2.txt AC 1 ms 128 KB
3.txt AC 0 ms 128 KB
4.txt AC 0 ms 128 KB
5.txt AC 0 ms 128 KB
6.txt AC 1 ms 128 KB
sample1.txt AC 0 ms 128 KB
sample2.txt AC 0 ms 128 KB