public class Main {
public static void main(String[] args){
try {
northPole();
} catch (FileNotFoundException e) {
// TODO Auto-generated catch block
e.printStackTrace();
} catch (IOException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
}
private static void northPole() throws IOException{
BufferedReader in = new BufferedReader(new InputStreamReader(System.in));
String total = in.readLine();
int tot = Integer.parseInt(total);
int number = 0;
Map list = null;
ssamkj
남극 기지... 맞는 것 같은데, WA가 나오네요. 테스트 케이스 더 가지고 계신 분 있으시면 부탁 드릴게요.
import java.io.BufferedReader;
import java.io.FileNotFoundException;
import java.io.IOException;
import java.io.InputStreamReader;
import java.util.ArrayList;
import java.util.HashMap;
import java.util.List;
import java.util.Map;
public class Main { list = null;
public static void main(String[] args){
try {
northPole();
} catch (FileNotFoundException e) {
// TODO Auto-generated catch block
e.printStackTrace();
} catch (IOException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
}
private static void northPole() throws IOException{
BufferedReader in = new BufferedReader(new InputStreamReader(System.in));
String total = in.readLine();
int tot = Integer.parseInt(total);
int number = 0;
Map
}
이게 소스이고, 사용한 테스트 케이스는
4
5
0 0
1 0
1 1
1 2
0 2
6
1.0 1.0
30.91 8
4.0 7.64
21.12 6.0
11.39 3.0
5.31 11.0
6
1 1
17 39
4 7
6 21
5 11
3 11
9
0 0
1000 1000
0 1000
1000 0
500 500
7 3
7 3
7 3
7 3
정답
1.00
10.18
21.10
707.11
밑에 두개는 혹씨나 해서 다른 분이 만든걸로 확인했거든요. 동일한 정답이 나오는데...
흠.....
여기 대부분이 C++ 이던데, 혹씨... 100만분의 1의 확률로 자바 컴파일에 문제가 있는 것은 아니겠지요?
ㅋㅋ
12년 전