Submission #1781291


Source Code Expand

import java.util.*;
import java.io.*;

public class Main {
    private static IO io = new IO();
    
    public static void main(String[] args) {
        int a = io.nextInt();
        int b = io.nextInt();
        int d = Math.abs(a - b);
        if (d>5) d = 10 - d;
        System.out.println(d);
    }

    static class IO extends PrintWriter {
        private final InputStream in;
        private final byte[] buffer = new byte[1024];
        private int ptr = 0;
        private int buflen = 0;

        IO() {
            this(System.in);
        }

        IO(InputStream source) {
            super(System.out);
            this.in = source;
        }

        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;
        }
        int readByte() {
            if (hasNextByte()) return buffer[ptr++];
            else return -1;
        }
        boolean isPrintableChar(int c) {return 33<=c &&c <=126;}
        void skipUnprintable() {while(hasNextByte() && !isPrintableChar(buffer[ptr]))ptr++;}
        boolean hasNext() {
            skipUnprintable();
            return hasNextByte();
        }

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

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

        public void close() {
            super.close();
            try {
                in.close();
            } catch (IOException ignored) {
            }
        }
    }
}

Submission Info

Submission Time
Task B - 錠
User creep04
Language Java8 (OpenJDK 1.8.0)
Score 100
Code Size 2575 Byte
Status AC
Exec Time 71 ms
Memory 22996 KB

Judge Result

Set Name all
Score / Max Score 100 / 100
Status
AC × 90
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 69 ms 20820 KB
0_2.txt AC 68 ms 17876 KB
0_3.txt AC 68 ms 19156 KB
0_4.txt AC 68 ms 21076 KB
0_5.txt AC 69 ms 20692 KB
0_6.txt AC 69 ms 18900 KB
0_7.txt AC 70 ms 20948 KB
0_8.txt AC 67 ms 18004 KB
0_9.txt AC 68 ms 19412 KB
1_0.txt AC 68 ms 19924 KB
1_2.txt AC 66 ms 17748 KB
1_3.txt AC 67 ms 19156 KB
1_4.txt AC 68 ms 19156 KB
1_5.txt AC 67 ms 21332 KB
1_6.txt AC 69 ms 18900 KB
1_7.txt AC 67 ms 19796 KB
1_8.txt AC 68 ms 21204 KB
1_9.txt AC 69 ms 18260 KB
2_0.txt AC 70 ms 20564 KB
2_1.txt AC 68 ms 19156 KB
2_3.txt AC 67 ms 19284 KB
2_4.txt AC 67 ms 18004 KB
2_5.txt AC 66 ms 18260 KB
2_6.txt AC 69 ms 21076 KB
2_7.txt AC 68 ms 19156 KB
2_8.txt AC 66 ms 19156 KB
2_9.txt AC 67 ms 15700 KB
3_0.txt AC 68 ms 21076 KB
3_1.txt AC 70 ms 16852 KB
3_2.txt AC 68 ms 19284 KB
3_4.txt AC 67 ms 19924 KB
3_5.txt AC 68 ms 19284 KB
3_6.txt AC 69 ms 21076 KB
3_7.txt AC 68 ms 19156 KB
3_8.txt AC 69 ms 19028 KB
3_9.txt AC 66 ms 17748 KB
4_0.txt AC 70 ms 18260 KB
4_1.txt AC 68 ms 21076 KB
4_2.txt AC 68 ms 21204 KB
4_3.txt AC 66 ms 19156 KB
4_5.txt AC 69 ms 21076 KB
4_6.txt AC 70 ms 19796 KB
4_7.txt AC 69 ms 18004 KB
4_8.txt AC 68 ms 19028 KB
4_9.txt AC 69 ms 20820 KB
5_0.txt AC 69 ms 19156 KB
5_1.txt AC 69 ms 19156 KB
5_2.txt AC 68 ms 20692 KB
5_3.txt AC 68 ms 19156 KB
5_4.txt AC 68 ms 17748 KB
5_6.txt AC 68 ms 19156 KB
5_7.txt AC 69 ms 18900 KB
5_8.txt AC 68 ms 19924 KB
5_9.txt AC 69 ms 19284 KB
6_0.txt AC 69 ms 18900 KB
6_1.txt AC 69 ms 22740 KB
6_2.txt AC 68 ms 18772 KB
6_3.txt AC 69 ms 18260 KB
6_4.txt AC 69 ms 18260 KB
6_5.txt AC 69 ms 20308 KB
6_7.txt AC 69 ms 20308 KB
6_8.txt AC 71 ms 18644 KB
6_9.txt AC 70 ms 20564 KB
7_0.txt AC 69 ms 21076 KB
7_1.txt AC 70 ms 18900 KB
7_2.txt AC 68 ms 19156 KB
7_3.txt AC 67 ms 18900 KB
7_4.txt AC 69 ms 18772 KB
7_5.txt AC 67 ms 21076 KB
7_6.txt AC 68 ms 21204 KB
7_8.txt AC 68 ms 19796 KB
7_9.txt AC 68 ms 19028 KB
8_0.txt AC 69 ms 20820 KB
8_1.txt AC 68 ms 21072 KB
8_2.txt AC 70 ms 22996 KB
8_3.txt AC 69 ms 18644 KB
8_4.txt AC 67 ms 18260 KB
8_5.txt AC 67 ms 19284 KB
8_6.txt AC 69 ms 18900 KB
8_7.txt AC 69 ms 18900 KB
8_9.txt AC 68 ms 18772 KB
9_0.txt AC 68 ms 19156 KB
9_1.txt AC 68 ms 19284 KB
9_2.txt AC 68 ms 15700 KB
9_3.txt AC 69 ms 20692 KB
9_4.txt AC 68 ms 18388 KB
9_5.txt AC 70 ms 20564 KB
9_6.txt AC 69 ms 18388 KB
9_7.txt AC 68 ms 21204 KB
9_8.txt AC 69 ms 18260 KB