Submission #2407083


Source Code Expand

import java.io.BufferedReader;
import java.io.Closeable;
import java.io.IOException;
import java.io.InputStream;
import java.io.InputStreamReader;
import java.io.PrintWriter;

public class Main {
    public static void main(String[] args) throws IOException {
        try (PrintWriter writer = new PrintWriter(System.out); InputReader reader = new InputReader(System.in)) {
            int m = reader.readInt();
            int vv = 0;
            if (m < 100) {
                vv = 0;
            } else if (m <= 5000) {
                vv = m / 100;
            } else if (m <= 30000) {
                vv = (m + 50000) / 1000;
            } else if (m <= 70000) {
                vv = (((m - 30000) / 5) + 80000) / 1000;
            } else {
                vv = 89;
            }

            System.out.printf("%02d%n", vv);
        }
    }
}

class InputReader implements Closeable, AutoCloseable {
    private final BufferedReader br;

    InputReader(InputStream inputStream) {
        this.br = new BufferedReader(new InputStreamReader(inputStream));
    }

    String readLine() throws IOException {
        return this.br.readLine();
    }

    int readInt() throws IOException {
        return Integer.parseInt(this.br.readLine());
    }

    long readLong() throws IOException {
        return Long.parseLong(this.br.readLine());
    }

    String[] readStringsSplitByDelimiter(String delimiter) throws IOException {
        return this.br.readLine().split(delimiter);
    }

    int[] readIntsSplitByDelimiter(String delimiter) throws IOException {
        String[] strings = this.br.readLine().split(delimiter);

        int stringsLength = strings.length;
        int[] ints = new int[stringsLength];
        for (int i = 0; i < stringsLength; i++) {
            ints[i] = Integer.parseInt(strings[i]);
        }

        return ints;
    }

    long[] readLongsSplitByDelimiter(String delimiter) throws IOException {
        String[] strings = this.br.readLine().split(delimiter);

        int stringsLength = strings.length;
        long[] longs = new long[stringsLength];
        for (int i = 0; i < stringsLength; i++) {
            longs[i] = Long.parseLong(strings[i]);
        }

        return longs;
    }

    @Override
    public void close() throws IOException {
        br.close();
    }
}

Submission Info

Submission Time
Task B - 視程の通報
User mt_kuma
Language Java8 (OpenJDK 1.8.0)
Score 100
Code Size 2399 Byte
Status AC
Exec Time 75 ms
Memory 21332 KB

Judge Result

Set Name all
Score / Max Score 100 / 100
Status
AC × 38
Set Name Test Cases
all 00_sample_01.txt, 00_sample_02.txt, 00_sample_03.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, test_21.txt, test_22.txt, test_23.txt, test_24.txt, test_25.txt, test_26.txt, test_27.txt, test_28.txt, test_29.txt, test_30.txt, test_31.txt, test_32.txt, test_33.txt, test_34.txt, test_35.txt
Case Name Status Exec Time Memory
00_sample_01.txt AC 72 ms 21204 KB
00_sample_02.txt AC 74 ms 18900 KB
00_sample_03.txt AC 73 ms 21204 KB
test_01.txt AC 73 ms 19284 KB
test_02.txt AC 73 ms 19412 KB
test_03.txt AC 74 ms 21076 KB
test_04.txt AC 73 ms 18004 KB
test_05.txt AC 74 ms 18516 KB
test_06.txt AC 72 ms 19668 KB
test_07.txt AC 74 ms 20692 KB
test_08.txt AC 75 ms 21072 KB
test_09.txt AC 75 ms 19284 KB
test_10.txt AC 72 ms 18772 KB
test_11.txt AC 74 ms 18260 KB
test_12.txt AC 71 ms 19284 KB
test_13.txt AC 73 ms 19284 KB
test_14.txt AC 73 ms 19668 KB
test_15.txt AC 73 ms 19284 KB
test_16.txt AC 73 ms 19156 KB
test_17.txt AC 73 ms 21204 KB
test_18.txt AC 72 ms 20052 KB
test_19.txt AC 74 ms 18644 KB
test_20.txt AC 74 ms 19156 KB
test_21.txt AC 71 ms 19540 KB
test_22.txt AC 74 ms 20948 KB
test_23.txt AC 72 ms 21076 KB
test_24.txt AC 71 ms 18260 KB
test_25.txt AC 73 ms 21204 KB
test_26.txt AC 72 ms 19284 KB
test_27.txt AC 73 ms 21332 KB
test_28.txt AC 73 ms 21204 KB
test_29.txt AC 72 ms 19156 KB
test_30.txt AC 75 ms 20948 KB
test_31.txt AC 73 ms 18260 KB
test_32.txt AC 73 ms 18004 KB
test_33.txt AC 72 ms 19284 KB
test_34.txt AC 72 ms 21204 KB
test_35.txt AC 72 ms 19284 KB