Baekjun, 1546, average (with.Java)
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
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.