Submission #2123549


Source Code Expand

#include <stdio.h>
int main(){
	int w,a,b,d,e;
	scanf("%d %d %d",&w,&a,&b);
	if(a<b){
		d=a+w;
		e=b-d;
		printf("%d",e);
	}else if(a>b){
		d=b+w;
		e=a-d;
		printf("%d",e);
	}else{
		printf("0");
	}
	return 0;
}

Submission Info

Submission Time
Task A - HonestOrDishonest
User DNA
Language C (GCC 5.4.1)
Score 0
Code Size 228 Byte
Status WA
Exec Time 1 ms
Memory 128 KB

Compile Error

./Main.c: In function ‘main’:
./Main.c:4:2: warning: ignoring return value of ‘scanf’, declared with attribute warn_unused_result [-Wunused-result]
  scanf("%d %d %d",&w,&a,&b);
  ^

Judge Result

Set Name Sample All
Score / Max Score 0 / 0 0 / 100
Status
WA × 3
WA × 4
Set Name Test Cases
Sample 0_000.txt, 0_001.txt, 0_002.txt
All 0_000.txt, 0_001.txt, 0_002.txt, 1_003.txt
Case Name Status Exec Time Memory
0_000.txt WA 1 ms 128 KB
0_001.txt WA 1 ms 128 KB
0_002.txt WA 1 ms 128 KB
1_003.txt WA 1 ms 128 KB