競技プログラミングの”The longest distance” という問題をやっています。
https://atcoder.jp/contests/arc004/tasks/arc004_1
問題は上のページなのですが、自分が書いたコードは以下です。
java
1import java.util.ArrayList; 2import java.util.List; 3import java.util.Scanner; 4 5public class The_longest_distance 6{ 7 public static void main(String[] args) 8 { 9 //how many dots 10 int N = (new Scanner(System.in)).nextInt(); 11 String[] strX = new String[N]; 12 String[] strY = new String[N]; 13 14 String[] num = new String[N]; 15 16 List<String[]> list = new ArrayList<>(); 17 18 for(int i = 0; i < N; i++) 19 { 20 String S = (new Scanner(System.in)).nextLine(); 21 22 strX[i] = S.split("\s")[0]; 23 strY[i] = S.split("\s")[1]; 24 } 25 26 //System.out.println(strX[3]); OK! 27 double first = Math.sqrt(Math.pow((Integer.parseInt(strX[0])-Integer.parseInt(strX[1])), 2) + Math.pow((Integer.parseInt(strY[0])-Integer.parseInt(strY[1])), 2)); 28 double result = 0; 29 30 for (int i = 0; i < strY.length-1; i++) 31 { 32 for(int is = i+1; is < strY.length; is++) 33 { 34 35 double ii = Math.sqrt(Math.pow((Integer.parseInt(strX[i])-Integer.parseInt(strX[is])), 2) + Math.pow((Integer.parseInt(strY[i])-Integer.parseInt(strY[is])), 2)); 36 if(ii > first) 37 { 38 result = ii; 39 } 40 } 41 } 42 if(result > first) 43 { 44 System.out.println(result); 45 } 46 else 47 { 48 System.out.println(first); 49 } 50 } 51} 52
コードが長ったらしくてごめんなさい。とりあえず答えが出ればいいやという軽い気持ちで書いてしまいました。
上記したページにある出力例で、1,3,4、5は正解できているのですが、2だけ、違う答えが出力されてしまいます。
自分のコードのどこに欠陥がありますでしょうか。どなたか、よろしくお願い致します。
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2020/04/17 13:41