Contents

Baekjun, 1546, average (with.Java)

   Mar 11, 2025     3 min read

Baekjun, 1546, average (with.J)

Baekjun No. 1546, this is an article about the mean (with.Java).

I want to solve the coding test problem, find out how to solve it differently from the retrospective of the problem I solved, and get to know.

Let’s get to the problem first.

Problem

Sejun messed up his final exam.

Sejun decided to manipulate the score and take it home.

First of all, Sejun chose the maximum value among his scores.

This value is called M. Then all scores were corrected to score /M*100.

For example, if Sejun’s highest score is 70 and his math score is 50, his math score is 50/70*100, which is 71.43 points.

When Sejun’s grades are newly calculated according to the above method, write a program to find a new average.

Input

In the first line, the number N of subjects taken is given.

This value is less than or equal to 1000. The second line gives Sejun’s current grades.

This value is an integer that is less than or equal to 100, and at least one value is greater than 0.

Output

Output a new average on the first line.

If the absolute or relative error between the actual correct answer and the output value is 10-2 or less, it is correct.

problem solving

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

class Main {
    public static void main(String[] args) throws IOException {
        BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
        BufferedWriter bw = new BufferedWriter(new OutputStreamWriter(System.out));
        ArrayList<Integer> list = new ArrayList<>();
        float high_score = 0;
        float avg_score = 0;
        br.readLine();

        StringTokenizer st = new StringTokenizer(br.readLine());
        while (st.hasMoreTokens()) {

            list.add(Integer.valueOf(st.nextToken()));
        }

        for(int i = 0; i < list.size(); i++) {
            if(high_score <= list.get(i)){
                high_score = list.get(i);
            }
        }

        for(int i = 0; i < list.size(); i++) {
            avg_score += list.get(i)/high_score*100;
        }

        bw.write(avg_score/list.size() + "\n");
        br.close();
        bw.flush();
        bw.close();
    }
}

Solution Description

First, use ‘BufferedReader’ to receive input and use ‘ArrayList' to save the score list.

Do not use the first input line, but use the ‘StringTokenizer’ to separate the spaces in the second line and add them to the list.

After that, I go around the list and look for the highest score.

The first set ‘high_score’ value is 0, and it stores the highest value by comparing each value in the list.

Next, there is a process of calculating the new average.

Divide each score by the highest score and multiply by 100 to obtain the converted score, sum these values, and divide them by the list size to calculate the final average.

Finally, the average is output using ‘BufferedWriter’, and the input and output streams are organized using ‘br.close()’ and ‘bw.flush()’ and ‘bw.close().

Note that if ‘high_score’ is 0, then ‘ArithmeticalException’ can occur in the division operation.

Therefore, you must update the value properly in the process of finding the ‘high_score’.

In addition, more stable results can be obtained by changing the type of list to ‘Float’ to increase the computational accuracy.

The output format can be readable by adjusting the decimal places, for which you can use ‘String.format(“%.2f”)’.

I’ve also written an improved code. I hope it’s a reference.