結果

問題 No.1041 直線大学
ユーザー xRS43BofaUEZ5gcxRS43BofaUEZ5gc
提出日時 2021-03-29 16:07:24
言語 Java21
(openjdk 21)
結果
AC  
実行時間 155 ms / 2,000 ms
コード長 892 bytes
コンパイル時間 3,227 ms
コンパイル使用メモリ 77,276 KB
実行使用メモリ 41,696 KB
最終ジャッジ日時 2024-11-16 08:11:57
合計ジャッジ時間 9,483 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 122 ms
41,244 KB
testcase_01 AC 121 ms
41,000 KB
testcase_02 AC 117 ms
40,024 KB
testcase_03 AC 110 ms
40,176 KB
testcase_04 AC 114 ms
39,828 KB
testcase_05 AC 124 ms
41,388 KB
testcase_06 AC 117 ms
39,852 KB
testcase_07 AC 128 ms
41,520 KB
testcase_08 AC 127 ms
41,088 KB
testcase_09 AC 127 ms
41,156 KB
testcase_10 AC 146 ms
41,696 KB
testcase_11 AC 148 ms
41,492 KB
testcase_12 AC 150 ms
41,044 KB
testcase_13 AC 124 ms
41,088 KB
testcase_14 AC 155 ms
41,284 KB
testcase_15 AC 129 ms
41,392 KB
testcase_16 AC 143 ms
41,596 KB
testcase_17 AC 114 ms
40,044 KB
testcase_18 AC 134 ms
41,124 KB
testcase_19 AC 140 ms
41,308 KB
testcase_20 AC 106 ms
40,320 KB
testcase_21 AC 129 ms
40,624 KB
testcase_22 AC 125 ms
41,036 KB
testcase_23 AC 143 ms
41,564 KB
testcase_24 AC 145 ms
41,508 KB
testcase_25 AC 134 ms
41,584 KB
testcase_26 AC 126 ms
41,208 KB
testcase_27 AC 131 ms
41,224 KB
testcase_28 AC 120 ms
40,916 KB
testcase_29 AC 118 ms
41,124 KB
testcase_30 AC 109 ms
40,224 KB
testcase_31 AC 113 ms
40,028 KB
testcase_32 AC 113 ms
39,940 KB
testcase_33 AC 121 ms
40,932 KB
testcase_34 AC 118 ms
40,932 KB
testcase_35 AC 119 ms
41,060 KB
testcase_36 AC 108 ms
39,820 KB
testcase_37 AC 121 ms
41,076 KB
testcase_38 AC 147 ms
41,256 KB
testcase_39 AC 136 ms
41,344 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class HelloWorld {
		public static void main (String[] args) {
			Scanner sc = new Scanner(System.in);
			int n = sc.nextInt();
			int[][] positions = new int[n][2];
			for (int i = 0; i < n; i ++) {
				positions[i][0] = sc.nextInt();
				positions[i][1] = sc.nextInt();
			}

			int count = 1;

			for (int i = 0; i < n; i ++) {
				for (int j = i+1; j < n; j ++) {
					long deltax1 = positions[i][0] - positions[j][0];
					long deltay1 = positions[i][1] - positions[j][1];
					int count_temp = 0;
					for (int ni = 0; ni < n; ni ++) {
						long deltax2 = positions[ni][0] - positions[j][0];
						long deltay2 = positions[ni][1] - positions[j][1];
						if (deltax1 * deltay2 == deltax2 * deltay1) {
							count_temp ++;
						}
					}
					if (count_temp > count) {
						count = count_temp;
					}
				}
			}
			
			System.out.println(count);
	}
}
0