Submission #3236466


Source Code Expand

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

import java.io.BufferedReader;
import java.io.InputStream;
import java.io.InputStreamReader;

public class Main {
    public static void main(String[] args) throws IOException {
        try (
            BufferedReader reader = new BufferedReader(
                new InputStreamReader(System.in))) {
            FastScanner fs = new FastScanner();

            final int L = fs.nextInt();
            final int H = fs.nextInt();
            final int N = fs.nextInt();

            for (int i = 0; i < N; i++) {
                final int A = fs.nextInt();
                System.out.println(
                    A < L ? L - A :
                    L <= A && A <= H ? 0 :
                    -1);
            }
        }
    }
}

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 ShinjiSHIBATA
Language Java8 (OpenJDK 1.8.0)
Score 100
Code Size 3078 Byte
Status AC
Exec Time 72 ms
Memory 22484 KB

Judge Result

Set Name Sample All
Score / Max Score 0 / 0 100 / 100
Status
AC × 2
AC × 22
Set Name Test Cases
Sample sample-01.txt, sample-02.txt
All sample-01.txt, sample-02.txt, test-01.txt, test-02.txt, test-03.txt, test-04.txt, test-05.txt, test-06.txt, test-07.txt, test-08.txt, test-09.txt, test-10.txt, test-11.txt, test-12.txt, test-13.txt, test-14.txt, test-15.txt, test-16.txt, test-17.txt, test-18.txt, test-19.txt, test-20.txt
Case Name Status Exec Time Memory
sample-01.txt AC 69 ms 20308 KB
sample-02.txt AC 69 ms 20564 KB
test-01.txt AC 67 ms 19540 KB
test-02.txt AC 68 ms 20820 KB
test-03.txt AC 70 ms 20692 KB
test-04.txt AC 69 ms 22228 KB
test-05.txt AC 67 ms 20052 KB
test-06.txt AC 69 ms 21204 KB
test-07.txt AC 70 ms 18900 KB
test-08.txt AC 71 ms 20564 KB
test-09.txt AC 71 ms 18004 KB
test-10.txt AC 69 ms 21204 KB
test-11.txt AC 69 ms 16340 KB
test-12.txt AC 71 ms 20564 KB
test-13.txt AC 72 ms 21072 KB
test-14.txt AC 72 ms 22484 KB
test-15.txt AC 72 ms 20436 KB
test-16.txt AC 70 ms 20948 KB
test-17.txt AC 70 ms 21204 KB
test-18.txt AC 71 ms 19924 KB
test-19.txt AC 71 ms 20564 KB
test-20.txt AC 71 ms 20180 KB