結果

問題 No.1041 直線大学
ユーザー joybeeeejoybeeee
提出日時 2020-05-13 10:43:07
言語 Java21
(openjdk 21)
結果
AC  
実行時間 143 ms / 2,000 ms
コード長 863 bytes
コンパイル時間 1,975 ms
コンパイル使用メモリ 77,476 KB
実行使用メモリ 41,580 KB
最終ジャッジ日時 2024-11-16 08:03:06
合計ジャッジ時間 7,777 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 114 ms
41,224 KB
testcase_01 AC 116 ms
41,236 KB
testcase_02 AC 110 ms
41,060 KB
testcase_03 AC 107 ms
41,076 KB
testcase_04 AC 114 ms
40,444 KB
testcase_05 AC 112 ms
41,008 KB
testcase_06 AC 106 ms
40,156 KB
testcase_07 AC 115 ms
41,160 KB
testcase_08 AC 111 ms
40,216 KB
testcase_09 AC 105 ms
40,032 KB
testcase_10 AC 143 ms
41,132 KB
testcase_11 AC 140 ms
41,368 KB
testcase_12 AC 130 ms
41,356 KB
testcase_13 AC 114 ms
40,928 KB
testcase_14 AC 136 ms
41,296 KB
testcase_15 AC 127 ms
41,080 KB
testcase_16 AC 130 ms
41,580 KB
testcase_17 AC 114 ms
39,996 KB
testcase_18 AC 124 ms
41,160 KB
testcase_19 AC 137 ms
41,556 KB
testcase_20 AC 104 ms
39,768 KB
testcase_21 AC 130 ms
41,344 KB
testcase_22 AC 103 ms
39,840 KB
testcase_23 AC 128 ms
41,420 KB
testcase_24 AC 135 ms
41,516 KB
testcase_25 AC 130 ms
41,120 KB
testcase_26 AC 113 ms
41,012 KB
testcase_27 AC 115 ms
41,376 KB
testcase_28 AC 104 ms
39,840 KB
testcase_29 AC 108 ms
40,172 KB
testcase_30 AC 115 ms
41,040 KB
testcase_31 AC 116 ms
41,360 KB
testcase_32 AC 108 ms
40,072 KB
testcase_33 AC 116 ms
40,992 KB
testcase_34 AC 117 ms
41,212 KB
testcase_35 AC 108 ms
40,896 KB
testcase_36 AC 115 ms
41,220 KB
testcase_37 AC 96 ms
40,224 KB
testcase_38 AC 130 ms
41,260 KB
testcase_39 AC 116 ms
41,160 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;
public class Main {

  public static void main(String[] args) { 
      Scanner sc = new Scanner(System.in);
      int n = sc.nextInt();
      int[][] points = new int[n][2];
      for(int i = 0; i < n; i++) {
        points[i][0] = sc.nextInt();
        points[i][1] = sc.nextInt();
      }
      int max = 0;
      for(int i = 0; i < n; i++) {
        for(int j = i + 1; j < n; j++) {
          int cnt = 2;
          int dx = points[i][0] - points[j][0];
          int dy = points[i][1] - points[j][1];
          for(int k = 0; k < n; k++) {
              if(k == i || k == j) continue;
              int dxk = points[i][0] - points[k][0];
              int dyk = points[i][1] - points[k][1];
              if(dx * dyk == dy * dxk) cnt++;
          }
          max = Math.max(max, cnt);
        }
      }
      System.out.println(max);
  }
}
0