結果

問題 No.1041 直線大学
ユーザー joybeeeejoybeeee
提出日時 2020-05-13 10:43:07
言語 Java21
(openjdk 21)
結果
AC  
実行時間 165 ms / 2,000 ms
コード長 863 bytes
コンパイル時間 2,036 ms
コンパイル使用メモリ 77,516 KB
実行使用メモリ 54,464 KB
最終ジャッジ日時 2024-04-28 00:15:55
合計ジャッジ時間 8,935 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 131 ms
54,120 KB
testcase_01 AC 132 ms
53,880 KB
testcase_02 AC 130 ms
53,700 KB
testcase_03 AC 132 ms
54,084 KB
testcase_04 AC 130 ms
53,796 KB
testcase_05 AC 131 ms
53,888 KB
testcase_06 AC 132 ms
54,008 KB
testcase_07 AC 135 ms
54,220 KB
testcase_08 AC 136 ms
54,152 KB
testcase_09 AC 135 ms
53,960 KB
testcase_10 AC 154 ms
54,172 KB
testcase_11 AC 154 ms
54,060 KB
testcase_12 AC 157 ms
54,132 KB
testcase_13 AC 138 ms
53,924 KB
testcase_14 AC 152 ms
54,340 KB
testcase_15 AC 142 ms
53,924 KB
testcase_16 AC 151 ms
53,812 KB
testcase_17 AC 135 ms
54,044 KB
testcase_18 AC 142 ms
54,392 KB
testcase_19 AC 155 ms
53,876 KB
testcase_20 AC 131 ms
53,952 KB
testcase_21 AC 143 ms
53,996 KB
testcase_22 AC 130 ms
54,176 KB
testcase_23 AC 152 ms
54,132 KB
testcase_24 AC 153 ms
53,984 KB
testcase_25 AC 146 ms
54,432 KB
testcase_26 AC 138 ms
54,384 KB
testcase_27 AC 139 ms
53,892 KB
testcase_28 AC 129 ms
53,916 KB
testcase_29 AC 118 ms
52,556 KB
testcase_30 AC 130 ms
54,464 KB
testcase_31 AC 132 ms
54,092 KB
testcase_32 AC 119 ms
52,864 KB
testcase_33 AC 132 ms
54,176 KB
testcase_34 AC 129 ms
54,040 KB
testcase_35 AC 130 ms
54,252 KB
testcase_36 AC 131 ms
53,876 KB
testcase_37 AC 132 ms
53,868 KB
testcase_38 AC 165 ms
54,236 KB
testcase_39 AC 142 ms
54,416 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