Submission #760877


Source Code Expand

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

public class Main {
    FastScanner fs = new FastScanner();

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

    void solve() {
        int H1 = 0;
        int W1 = 0;
        int H2 = 0;
        int W2 = 0;
        H1 = fs.nextInt();
        W1 = fs.nextInt();
        H2 = fs.nextInt();
        W2 = fs.nextInt();
        if(H1 == H2 || W1 == W2) {
            System.out.println("YES");
            return;
        } else if(H1 == W2 || H2 == W1){
            System.out.println("YES");
            return;
        } else {
            System.out.println("NO");
        }
    }
}

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;
    }

    private void skipUnprintable() {
        while (hasNextByte() && !isPrintableChar(buffer[ptr])) ptr++;
    }

    public boolean hasNext() {
        skipUnprintable();
        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() {
        if (!hasNext()) throw new NoSuchElementException();
        int 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();
        }
    }
}

Submission Info

Submission Time
Task B - ディスプレイ
User moomin
Language Java8 (OpenJDK 1.8.0)
Score 100
Code Size 3512 Byte
Status AC
Exec Time 164 ms
Memory 7892 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 152 ms 7892 KiB
sample1.txt AC 164 ms 7760 KiB
sample2.txt AC 152 ms 7888 KiB
sample3.txt AC 152 ms 7888 KiB
sample4.txt AC 159 ms 7888 KiB
subtask1_0.txt AC 152 ms 7764 KiB
subtask1_1.txt AC 162 ms 7892 KiB
subtask1_10.txt AC 152 ms 7888 KiB
subtask1_11.txt AC 159 ms 7760 KiB
subtask1_12.txt AC 156 ms 7764 KiB
subtask1_13.txt AC 159 ms 7764 KiB
subtask1_14.txt AC 160 ms 7892 KiB
subtask1_2.txt AC 155 ms 7892 KiB
subtask1_3.txt AC 156 ms 7892 KiB
subtask1_4.txt AC 152 ms 7764 KiB
subtask1_5.txt AC 155 ms 7892 KiB
subtask1_6.txt AC 148 ms 7888 KiB
subtask1_7.txt AC 152 ms 7760 KiB
subtask1_8.txt AC 157 ms 7888 KiB
subtask1_9.txt AC 152 ms 7764 KiB