Submission #2559210


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( d*(-1) <= a-c && a-c <= d){ // aとcの差がd以内
        ans = "Yes";
    }
    else if( d*(-1) <= a-b && d*(-1) <= c-b && d >= a-b && d>= c-b){
        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 100
Code Size 533 Byte
Status AC
Exec Time 94 ms
Memory 21844 KB

Judge Result

Set Name Sample All
Score / Max Score 0 / 0 100 / 100
Status
AC × 4
AC × 10
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 AC 94 ms 19412 KB
0_001.txt AC 92 ms 19796 KB
0_002.txt AC 93 ms 21716 KB
0_003.txt AC 92 ms 21716 KB
1_003.txt AC 94 ms 21332 KB
1_004.txt AC 92 ms 19668 KB
1_005.txt AC 92 ms 19924 KB
1_006.txt AC 92 ms 18644 KB
1_007.txt AC 91 ms 21844 KB
1_008.txt AC 94 ms 16976 KB