Submission #2384471


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 251 Byte
Status WA
Exec Time 1 ms
Memory 128 KB

Compile Error

./Main.c: In function ‘main’:
./Main.c:6:5: warning: ignoring return value of ‘scanf’, declared with attribute warn_unused_result [-Wunused-result]
     scanf("%d", &a);
     ^
./Main.c:7:5: warning: ignoring return value of ‘scanf’, declared with attribute warn_unused_result [-Wunused-result]
     scanf("%d", &b);
     ^
./Main.c:8: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
WA × 3
WA × 13
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 1 ms 128 KB
2.txt WA 1 ms 128 KB
3.txt WA 1 ms 128 KB
4.txt WA 1 ms 128 KB
5.txt WA 1 ms 128 KB
6.txt WA 1 ms 128 KB
7.txt WA 1 ms 128 KB
sample1.txt WA 1 ms 128 KB
sample2.txt WA 1 ms 128 KB
sample3.txt WA 1 ms 128 KB