Submission #743130


Source Code Expand

import java.io.IOException;
import java.io.InputStream;
import java.io.PrintWriter;
import java.util.NoSuchElementException;

public class Main {
    FastScanner in = new FastScanner();
    PrintWriter out = new PrintWriter(System.out);

    private void solve() {
        int H1 = in.nextInt();
        int W1 = in.nextInt();
        int H2 = in.nextInt();
        int W2 = in.nextInt();
        if (H1 == H2 || H1 == W2 || W1 == H2 || W1 == W2) {
            out.println("YES");
        } else {
            out.println("NO");
        }
    }

    private void run() {
        solve();
        out.flush();
    }

    public static void main(String[] args) {
        new Main().run();
    }
}

class FastScanner {
    private final InputStream in = System.in;
    private final byte[] buffer = new byte[1024];
    private int ptr = 0;
    private int buflen = 0;

    private boolean hasNextByte() {
        if (ptr < buflen) {
            return true;
        }else{
            ptr = 0;
            try {
                buflen = in.read(buffer);
            } catch (IOException e) {
                e.printStackTrace();
            }
            if (buflen <= 0) {
                return false;
            }
        }
        return true;
    }

    private int readByte() { if (hasNextByte()) return buffer[ptr++]; else return -1;}

    private static boolean isPrintableChar(int c) { return 33 <= c && c <= 126;}

    public boolean hasNext() { while(hasNextByte() && !isPrintableChar(buffer[ptr])) ptr++; return hasNextByte();}

    public String next() {
        if (!hasNext()) throw new NoSuchElementException();
        StringBuilder sb = new StringBuilder();
        int b = readByte();
        while(isPrintableChar(b)) {
            sb.appendCodePoint(b);
            b = readByte();
        }
        return sb.toString();
    }

    public long nextLong() {
        if (!hasNext()) throw new NoSuchElementException();
        long n = 0;
        boolean minus = false;
        int b = readByte();
        if (b == '-') {
            minus = true;
            b = readByte();
        }
        if (b < '0' || '9' < b) {
            throw new NumberFormatException();
        }
        while(true){
            if ('0' <= b && b <= '9') {
                n *= 10;
                n += b - '0';
            }else if(b == -1 || !isPrintableChar(b)){
                return minus ? -n : n;
            }else{
                throw new NumberFormatException();
            }
            b = readByte();
        }
    }

    public int nextInt() {
        long nl = nextLong();
        if (nl < Integer.MIN_VALUE || nl > Integer.MAX_VALUE) throw new NumberFormatException();
        return (int) nl;
    }

    public double nextDouble() { return Double.parseDouble(next());}
}

Submission Info

Submission Time
Task B - ディスプレイ
User ysd
Language Java8 (OpenJDK 1.8.0)
Score 100
Code Size 2892 Byte
Status AC
Exec Time 224 ms
Memory 8016 KiB

Judge Result

Set Name Sample All
Score / Max Score 0 / 0 100 / 100
Status
AC × 5
AC × 15
Set Name Test Cases
Sample sample0.txt, sample1.txt, sample2.txt, sample3.txt, sample4.txt
All subtask1_0.txt, subtask1_1.txt, subtask1_10.txt, subtask1_11.txt, subtask1_12.txt, subtask1_13.txt, subtask1_14.txt, subtask1_2.txt, subtask1_3.txt, subtask1_4.txt, subtask1_5.txt, subtask1_6.txt, subtask1_7.txt, subtask1_8.txt, subtask1_9.txt
Case Name Status Exec Time Memory
sample0.txt AC 150 ms 7892 KiB
sample1.txt AC 150 ms 7764 KiB
sample2.txt AC 146 ms 7892 KiB
sample3.txt AC 144 ms 7892 KiB
sample4.txt AC 145 ms 7892 KiB
subtask1_0.txt AC 146 ms 7888 KiB
subtask1_1.txt AC 143 ms 7892 KiB
subtask1_10.txt AC 147 ms 7892 KiB
subtask1_11.txt AC 146 ms 7892 KiB
subtask1_12.txt AC 146 ms 7760 KiB
subtask1_13.txt AC 224 ms 7888 KiB
subtask1_14.txt AC 146 ms 8016 KiB
subtask1_2.txt AC 150 ms 7892 KiB
subtask1_3.txt AC 147 ms 7892 KiB
subtask1_4.txt AC 150 ms 7892 KiB
subtask1_5.txt AC 154 ms 7892 KiB
subtask1_6.txt AC 146 ms 7892 KiB
subtask1_7.txt AC 149 ms 7892 KiB
subtask1_8.txt AC 150 ms 7892 KiB
subtask1_9.txt AC 144 ms 7892 KiB