QOJ.ac

QOJ

ID题目提交者结果用时内存语言文件大小提交时间测评时间
#24258#2291. Lopsided LineupjskopCompile Error//Java8864b2022-03-28 20:46:362022-05-18 04:15:55

Judging History

你现在查看的是最新测评结果

  • [2023-08-10 23:21:45]
  • System Update: QOJ starts to keep a history of the judgings of all the submissions.
  • [2022-05-18 04:15:55]
  • 评测
  • [2022-03-28 20:46:36]
  • 提交

answer

import java.util.*;
import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;

public class Solution
{
	public static void main(String[] args) {
		BufferedReader reader = new BufferedReader(new InputStreamReader(System.in));
		String line = "";
		ArrayList<String> lines = new ArrayList<String>();
		ArrayList<Integer> sums = new ArrayList<Integer>();
		while(line!=null) {
			line = reader.readLine();
		}
		int players = Integer.parseInt(lines.get(0));
		for(int i=0; i<players; i++) {
			int sum = 0;
			for(String s: lines.get(i).split(" ")) {
				sum += Integer.parseInt(s);
			}
			sums.add(sum);
		}
		Collections.sort(sums);
		int max = 0;
		int min = 0;
		for(int i=0; i<players/2; i++) {
			max += sums.get(players-i-1);
			min += sums.get(i);
		}
		System.out.println((max-min)/2);
	}
}

详细

Solution.java:15: error: unreported exception IOException; must be caught or declared to be thrown
			line = reader.readLine();
			                      ^
1 error