Submission #2384473


Source Code Expand

#include <stdio.h>

int main(void){
    int a, b, x;
    
    scanf("%d", &a);
    scanf("%d", &b);
    scanf("%d", &x);
    
    if(a < x && x <= a + b)
        printf("YES \n");
    else
        printf("NO \n");
    
    return 0;
}

Submission Info

Submission Time
Task A - Cats and Dogs
User takcod
Language C (GCC 5.4.1)
Score 0
Code Size 253 Byte
Status WA
Exec Time 1 ms
Memory 128 KB

Compile Error

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

Judge Result

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