Submission #3240720


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 a = fs.nextInt();
            final int b = fs.nextInt();

            System.out.println(Math.min(Math.abs(a - b), 10 + b -a));
        }
    }
}

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 0
Code Size 2861 Byte
Status WA
Exec Time 137 ms
Memory 23252 KB

Judge Result

Set Name all
Score / Max Score 0 / 100
Status
AC × 80
WA × 10
Set Name Test Cases
all 0_1.txt, 0_2.txt, 0_3.txt, 0_4.txt, 0_5.txt, 0_6.txt, 0_7.txt, 0_8.txt, 0_9.txt, 1_0.txt, 1_2.txt, 1_3.txt, 1_4.txt, 1_5.txt, 1_6.txt, 1_7.txt, 1_8.txt, 1_9.txt, 2_0.txt, 2_1.txt, 2_3.txt, 2_4.txt, 2_5.txt, 2_6.txt, 2_7.txt, 2_8.txt, 2_9.txt, 3_0.txt, 3_1.txt, 3_2.txt, 3_4.txt, 3_5.txt, 3_6.txt, 3_7.txt, 3_8.txt, 3_9.txt, 4_0.txt, 4_1.txt, 4_2.txt, 4_3.txt, 4_5.txt, 4_6.txt, 4_7.txt, 4_8.txt, 4_9.txt, 5_0.txt, 5_1.txt, 5_2.txt, 5_3.txt, 5_4.txt, 5_6.txt, 5_7.txt, 5_8.txt, 5_9.txt, 6_0.txt, 6_1.txt, 6_2.txt, 6_3.txt, 6_4.txt, 6_5.txt, 6_7.txt, 6_8.txt, 6_9.txt, 7_0.txt, 7_1.txt, 7_2.txt, 7_3.txt, 7_4.txt, 7_5.txt, 7_6.txt, 7_8.txt, 7_9.txt, 8_0.txt, 8_1.txt, 8_2.txt, 8_3.txt, 8_4.txt, 8_5.txt, 8_6.txt, 8_7.txt, 8_9.txt, 9_0.txt, 9_1.txt, 9_2.txt, 9_3.txt, 9_4.txt, 9_5.txt, 9_6.txt, 9_7.txt, 9_8.txt
Case Name Status Exec Time Memory
0_1.txt AC 137 ms 20948 KB
0_2.txt AC 70 ms 20436 KB
0_3.txt AC 101 ms 21204 KB
0_4.txt AC 68 ms 18644 KB
0_5.txt AC 70 ms 18132 KB
0_6.txt WA 69 ms 22612 KB
0_7.txt WA 69 ms 21204 KB
0_8.txt WA 70 ms 20692 KB
0_9.txt WA 70 ms 21844 KB
1_0.txt AC 69 ms 21076 KB
1_2.txt AC 68 ms 20564 KB
1_3.txt AC 69 ms 19284 KB
1_4.txt AC 69 ms 20692 KB
1_5.txt AC 68 ms 20436 KB
1_6.txt AC 68 ms 22612 KB
1_7.txt WA 67 ms 18004 KB
1_8.txt WA 67 ms 19796 KB
1_9.txt WA 67 ms 17620 KB
2_0.txt AC 69 ms 16468 KB
2_1.txt AC 69 ms 20564 KB
2_3.txt AC 68 ms 19284 KB
2_4.txt AC 70 ms 20948 KB
2_5.txt AC 68 ms 19284 KB
2_6.txt AC 69 ms 20820 KB
2_7.txt AC 69 ms 18644 KB
2_8.txt WA 69 ms 21076 KB
2_9.txt WA 68 ms 18644 KB
3_0.txt AC 69 ms 19668 KB
3_1.txt AC 69 ms 19668 KB
3_2.txt AC 67 ms 19540 KB
3_4.txt AC 68 ms 19540 KB
3_5.txt AC 69 ms 20564 KB
3_6.txt AC 69 ms 18260 KB
3_7.txt AC 68 ms 18644 KB
3_8.txt AC 68 ms 20564 KB
3_9.txt WA 68 ms 17364 KB
4_0.txt AC 67 ms 21204 KB
4_1.txt AC 70 ms 20564 KB
4_2.txt AC 69 ms 19152 KB
4_3.txt AC 67 ms 19796 KB
4_5.txt AC 67 ms 19540 KB
4_6.txt AC 69 ms 20180 KB
4_7.txt AC 67 ms 19284 KB
4_8.txt AC 69 ms 18516 KB
4_9.txt AC 97 ms 20564 KB
5_0.txt AC 68 ms 19284 KB
5_1.txt AC 67 ms 20564 KB
5_2.txt AC 70 ms 18644 KB
5_3.txt AC 69 ms 21460 KB
5_4.txt AC 69 ms 20308 KB
5_6.txt AC 68 ms 18260 KB
5_7.txt AC 68 ms 18772 KB
5_8.txt AC 68 ms 20564 KB
5_9.txt AC 69 ms 19540 KB
6_0.txt AC 67 ms 20436 KB
6_1.txt AC 68 ms 20564 KB
6_2.txt AC 69 ms 19796 KB
6_3.txt AC 70 ms 20692 KB
6_4.txt AC 68 ms 20692 KB
6_5.txt AC 102 ms 21204 KB
6_7.txt AC 104 ms 20052 KB
6_8.txt AC 69 ms 19412 KB
6_9.txt AC 115 ms 21460 KB
7_0.txt AC 68 ms 19156 KB
7_1.txt AC 88 ms 18644 KB
7_2.txt AC 70 ms 20180 KB
7_3.txt AC 68 ms 19028 KB
7_4.txt AC 70 ms 22868 KB
7_5.txt AC 69 ms 22612 KB
7_6.txt AC 70 ms 22356 KB
7_8.txt AC 69 ms 21076 KB
7_9.txt AC 69 ms 20692 KB
8_0.txt AC 68 ms 18644 KB
8_1.txt AC 68 ms 21076 KB
8_2.txt AC 69 ms 20308 KB
8_3.txt AC 68 ms 23252 KB
8_4.txt AC 69 ms 20564 KB
8_5.txt AC 67 ms 19924 KB
8_6.txt AC 67 ms 17748 KB
8_7.txt AC 69 ms 20692 KB
8_9.txt AC 69 ms 19668 KB
9_0.txt AC 69 ms 19540 KB
9_1.txt AC 67 ms 19412 KB
9_2.txt AC 68 ms 19156 KB
9_3.txt AC 68 ms 17236 KB
9_4.txt AC 67 ms 17620 KB
9_5.txt AC 69 ms 21844 KB
9_6.txt AC 67 ms 18004 KB
9_7.txt AC 69 ms 22996 KB
9_8.txt AC 68 ms 19156 KB