Submission #2559192


Source Code Expand

import java.io.*;
import java.util.*;
class Main
{
public static void main (String args[])
{
    Scanner sc = new Scanner(System.in);
    int a = sc.nextInt();
    int b = sc.nextInt();
    int c = sc.nextInt();
    int d = sc.nextInt();
    String ans;

    if( b-a <= d && c-b <= d){
        ans = "Yes";
    }
    else{
        ans = "No";
    }
    if( d*(-1) < a-c && a-c < d){
        ans = "Yes";
    }
    else{
        ans = "No";
    }
    System.out.println(ans);

}
}

Submission Info

Submission Time
Task A - Colorful Transceivers
User tonq
Language Java8 (OpenJDK 1.8.0)
Score 0
Code Size 507 Byte
Status WA
Exec Time 95 ms
Memory 21716 KB

Judge Result

Set Name Sample All
Score / Max Score 0 / 0 0 / 100
Status
AC × 3
WA × 1
AC × 8
WA × 2
Set Name Test Cases
Sample 0_000.txt, 0_001.txt, 0_002.txt, 0_003.txt
All 0_000.txt, 0_001.txt, 0_002.txt, 0_003.txt, 1_003.txt, 1_004.txt, 1_005.txt, 1_006.txt, 1_007.txt, 1_008.txt
Case Name Status Exec Time Memory
0_000.txt WA 92 ms 21716 KB
0_001.txt AC 95 ms 19668 KB
0_002.txt AC 93 ms 19796 KB
0_003.txt AC 94 ms 19540 KB
1_003.txt AC 94 ms 19412 KB
1_004.txt AC 94 ms 21588 KB
1_005.txt WA 93 ms 21332 KB
1_006.txt AC 92 ms 18516 KB
1_007.txt AC 95 ms 21204 KB
1_008.txt AC 92 ms 18644 KB